0

使用文本框,每当我们点击虚拟键盘中的 Go 按钮时,我都会调用一个方法,任何建议如何

4

1 回答 1

4

您可以使用以下方法捕获返回键:

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    /* call whatever methods you need */
    return YES;
}

但首先,您的视图控制器需要设置为 textField 的委托。 https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITextFieldDelegate_Protocol/UITextFieldDelegate/UITextFieldDelegate.html

于 2012-11-05T15:38:11.400 回答