
Can anyone tell me how to hide keyboard in my simple view based application in iphone?

Hiding keyboard in iPhone
- (BOOL)textFielsShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];
return YES;
}
Where textField is the object of your UITextField.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.