更改“返回”文本 键盘按钮
如何将“返回”按钮的标准文本更改为其他内容?
我希望它是“添加”。
How can I change the standard text of the "Return" button to something else?
I want it to be "Add".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不幸的是,您只能使用
returnKeyType
属性将“Return”更改为这些预定义标签之一:So如果您想要进行数据输入类型的活动,也许您应该选择“下一步”。
更多信息此处。
Unfortunately, you can change "Return" into only one of these predefined labels with the
returnKeyType
property:So maybe you should choose "Next" if a data entry kind of activity is what you're after.
More information here.
您可以使用这个简单的方法:
[textField setReturnKeyType:UIReturnKeyNext]; 或 [textField setReturnKeyType:UIReturnKeyGo];
而不是“添加”按钮。另外,您可以以编程方式创建一个带有所需按钮的键盘。
You can use this simple way:
[textField setReturnKeyType:UIReturnKeyNext]; or [textField setReturnKeyType:UIReturnKeyGo];
instead of "Add" button.Other, you create a programmatically keyboard with buttons which you want.
iOS 9 现在支持“发送”按钮。 这是以下 Objective C 的 swift 代码
:
iOS 9 now supports Send button. This is the following swift code
Objective C: