UISwitch の状態を保存しようとしています。UISwitch の状態が「オン」の場合、ユーザーがアプリを終了して再度起動すると、アプリは以前の状態を表示し、ユーザーが UISwitch の状態を変更する予定がある場合「オフ」 ..以前は「オン」状態だったというメッセージが表示され、状態が「オフ」に変わるはずです
あなたたちが私を助けてくれたら、それは素晴らしいことです。ありがとう
-(IBAction)notification:(id)sender
{
if (sender == notifyMe)
{
if(notifyMe.isOn == YES)
{
toggle = YES;
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
[defaults setBool:notifyMe.on forKey:@"switchValueKey"];
[defaults synchronize];
NSLog(@"Notification is ON");
}
else
{
toggle = NO;
NSLog(@"Notification is OFF");
}
}
if ([cellDelegate respondsToSelector:@selector(notificationReqd:)])
{
[cellDelegate notificationReqd:self];
}
}