正如标题所说;我如何创建一个激活UISwitch的UIButton,如果它已经打开,那么将其停用..?
答案 0 :(得分:1)
假设你有
IBOutlet UISwitch * myNiceSwitch;
您可以将按钮(UIButton)放入视图并将其连接到IBAction,然后激活(或在我的情况下,切换)您的UISwitch:
- (IBAction) pushButtonAction: (id) sender
{
BOOL switchEnabled = myNiceSwitch.enabled;
myNiceSwitch.enabled = !switchEnabled;
}
应该那么简单,是吗?