I am new to iphone.I have small doubt that is I have a button with name Sync off when we click that button the below action executes :
- (IBAction)syncOffClickedInRegisterUserScreen:(id)sender {
if ([syncOnorOff.titleLabel.text isEqualToString:@"Sync off"]) {
[syncOnorOff setTitle:@"Sync on" forState:UIControlStateNormal];
}
else {
[syncOnorOff setTitle:@"Sync off" forState:UIControlStateNormal];
}
}
Due to the above code, when I click the button the title alternates.
How can I save the state of the button with different titles using NSUserDefaults. If anybody knows this please help me....