我使用 DCRoundSwitch 创建自定义开关,问题是我无法调用 UIControlEventTouchUpInside 事件,但只有 UIControlEventValueChanged 事件被调用。
以下是我在 viewdidload 中编写的代码:
self.swtchDailyReminder.on = YES;
self.swtchDailyReminder.onTintColor =[UIColor colorWithRed:47.0/255.0 green:160.0/255.0
blue:158.0/255.0 alpha:1.0];
[self.swtchDailyReminder addTarget:self action:@selector(switchDailyReminderToggled:)
forControlEvents:UIControlEventTouchUpInside];
提前致谢。