-(IBAction)settings:(id)sender { [mileagerate resignFirstResponder]; [mainView bringSubviewToFront:mileageView]; mainView.hidden=TRUE; [UIView beginAnimations:@"Settings" context:nil]; [UIView setAnimationDuration:1.0]; [mainView setFrame:CGRectMake(0, 0, 320, 460)]; [UIView commitAnimations]; mileagerate.text = [[NSUserDefaults standardUserDefaults] valueForKey:@"savedstring"]; mileageView.hidden=FALSE; }
I used the resignation of the first responder in different places of my application. But when I press only this button, the keyboard does not disappear. If I press the return key on the keyboard, the entered value disappears.
objective-c iphone resignfirstresponder
Sharanya
source share