UIviewcontrollerproblem
In my view i have Textfield.If i move that TextField it should open iphone keyboard occupies.Extra Tex开发者_运维百科tFields 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];
}
精彩评论