iOS UISwitch 设置默认为开,添加事件
程序员文章站
2023-01-29 17:54:58
ios uiswitch 设置默认为开,添加事件:ios uiswitch如何设置默认为开,添加事件呢?希望下面的文章对大家有所帮助。
#import"viewcontroller.h...
ios uiswitch 设置默认为开,添加事件:ios uiswitch如何设置默认为开,添加事件呢?希望下面的文章对大家有所帮助。
#import"viewcontroller.h" @interfaceviewcontroller() @end @implementationviewcontroller - (void)viewdidload { [superviewdidload]; uiswitch* swt = [[uiswitchalloc]initwithframe:cgrectmake(100,100,100,100)]; [self.viewaddsubview:swt]; [swtseton:yes];//默认是no关着 swt.thumbtintcolor= [uicolorpurplecolor]; [swtaddtarget:selfaction:@selector(tell)forcontrolevents:uicontroleventtouchupinside]; } - (void)didreceivememorywarning { [superdidreceivememorywarning]; // dispose of any resources that can be recreated. } - (void) ftaction{ nslog(@"hhh"); } ui控件 uiswitch 设置默认为开,添加事件 - (void)open:(uiswitch*)swt{ if(swt.on) {ui控件 uiswitch 设置默认为开,添加事件 nslog(@"打开状态"); }else{ui控件 uiswitch 设置默认为开,添加事件 nslog(@"关闭状态"); }ui控件 uiswitch 设置默认为开,添加事件ui控件 uiswitch 设置默认为开,添加事件 } ui控件 uiswitch 设置默认为开,添加事件 - (void)tell{ nslog(@"fas"); } @end