Hello, I have a problem... In my view i have Textfield.If i move that TextField it should open iphone keyboard occupies.Extra TextFields doesn't display
Please help in this issue.
Hello, I have a problem... In my view i have Textfield.If i move that TextField it should open iphone keyboard occupies.Extra TextFields doesn't display
Please help in this issue.
If you want the keyboard to slide away when you click outside the textfield implement:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[myTextfield resignFirstResponder];
}