views:

17

answers:

1

Hi,

I got one UITextField on my Modal view controller. When "Done" key is clicked, i want to dismiss the modal view. i don't know where should i add below code to dismiss modal view. Thanks in advance for any help.

[self.parentViewController dismissModalViewControllerAnimated:YES];
A: 

add it in UITextFieldDelegate method

-(BOOL)textFieldShouldReturn:(UITextField *)textField {
    [textField resignFirstResponder];
    [self.parentViewController dismissModalViewControllerAnimated:YES];
    return YES;
}
Gyani
thanks Gyani! it's working...
moon