UISwitch をオンからオフに、オフからオンに変更したいのですが、できません。xib で UISwitch を作成しました。
- (IBAction)switchAction:(id)sender {
UISwitch *nkswitch = (UISwitch *)sender;
if (nkswitch.isOn)
NSLog(@"switchPressed ON");
else
NSLog(@"switchPressed OFF");
}
解決策はありますか?
アップデート