I have a "Submit" button and a button that toggles between "Edit" and "Cancel." How do I get the "Cancel" button to return to saying "Edit" when I press the "Submit" button? If I press "Cancel," that button will switch back to "Edit."
This is what I have, and it doesn't work.
- (IBAction)submitClicked:(id)sender {
[submitButton resignFirstResponder];
if (inEditMode)
[editButton setClicked:YES];
...
}
- (IBAction)editClicked:(id)sender {
if (inEditMode)
{
inEditMode = NO;
...
[sender setTitle:@"Edit" forState:UIControlStateNormal];
}
else
{
inEditMode = YES;
[sender setTitle:@"Cancel" forState:UIControlStateNormal];
}
[editButton resignFirstResponder];
}
Thanks, John