views:

40

answers:

1

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.

+1  A: 

If you want the keyboard to slide away when you click outside the textfield implement:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [myTextfield resignFirstResponder];
}
Diederik Hoogenboom
hello diederik hoogenboom u r answer very nice
sudhakar