如何关闭返回键上的数字键盘

时间:2010-03-30 17:42:47

标签: iphone uitextfield

-(BOOL) textFieldShouldReturn:(UITextField*) theTextField{
    [theTextField resignFirstResponder];
    return YES;
}

它不起作用....

1 个答案:

答案 0 :(得分:3)

This answer表明代表决定是否关闭键盘。

如果要关闭键盘,textFieldShouldReturn:必须返回NO:

-(BOOL) textFieldShouldReturn:(UITextField*) theTextField{
    [theTextField resignFirstResponder];
    return NO;
}