iPad:“Next”/“Enter”的事件处理程序钥匙?
如何捕获 iPad 上 UITextFIeld 上的“Enter”键事件?
How do you catch the "Enter" key event on a UITextFIeld on the iPad?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现在
UITextFieldDelegate
协议中声明的-textFieldShouldReturn:
委托方法。要使对象成为文本字段的委托,请将字段的delegate
属性设置为该对象。Implement the
-textFieldShouldReturn:
delegate method, declared in theUITextFieldDelegate
protocol. To make an object the delegate of the text field, set the field'sdelegate
property to that object.