UITextField 的 (BOOL)textFieldShouldReturn:(UITextField*) textField用途

时间:2025-01-25 08:32:21

在Windows phone 中一个文本框弹出输入法,只要点击enter,输入法就是消失.iphone中需要ViewControl实现UITextFildDelegate协议的textFieldShouldReturn方法

并在该方法中做如下处理:

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