更改“返回”文本 键盘按钮

发布于 2024-07-23 04:58:25 字数 50 浏览 7 评论 0原文

如何将“返回”按钮的标准文本更改为其他内容?

我希望它是“添加”。

How can I change the standard text of the "Return" button to something else?

I want it to be "Add".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

若沐 2024-07-30 04:58:25

不幸的是,您只能使用 returnKeyType 属性将“Return”更改为这些预定义标签之一:

  • Return(默认)
  • Go
  • Google
  • Join
  • Next
  • Route
  • Search
  • Send
  • Yahoo
  • Done
  • Emergency Call
  • Continue(自 iOS 9 起)

So如果您想要进行数据输入类型的活动,也许您应该选择“下一步”。

更多信息此处

Unfortunately, you can change "Return" into only one of these predefined labels with the returnKeyType property:

  • Return (default)
  • Go
  • Google
  • Join
  • Next
  • Route
  • Search
  • Send
  • Yahoo
  • Done
  • Emergency Call
  • Continue (as of iOS 9)

So maybe you should choose "Next" if a data entry kind of activity is what you're after.

More information here.

旧伤慢歌 2024-07-30 04:58:25

您可以使用这个简单的方法:
[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.

感性 2024-07-30 04:58:25

iOS 9 现在支持“发送”按钮。 这是以下 Objective C 的 swift 代码

self.liveChatMessage.returnKeyType = .Send

[self.liveChatMessage setReturnKeyType: UIReturnKeyTypeSend];

iOS 9 now supports Send button. This is the following swift code

self.liveChatMessage.returnKeyType = .Send

Objective C:

[self.liveChatMessage setReturnKeyType: UIReturnKeyTypeSend];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文