使用 mfmailcomposeviewcontroller 时翻译按钮上的文本

发布于 2024-11-16 11:16:52 字数 113 浏览 5 评论 0原文

使用 mfmailcomposeviewcontroller 时如何更改 UIBarButtonItem 的标题?我不需要文本“取消”/“发送”,也不需要保存/删除草稿选项,该选项会在用户点击“取消”时提示用户。

How is it possible to change the title of the UIBarButtonItem's when using mfmailcomposeviewcontroller? I don't want the text "cancel"/"send" and I also do not need the save/delete draft option which prompt the user when he/she taps "cancel".

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

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

发布评论

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

评论(2

咿呀咿呀哟 2024-11-23 11:16:52

你不能。 MFMailComposeViewController 不可自定义。

您可以更改 Info.plist 中的开发区域,以便翻译您的系统按钮,或者在应用程序中添加翻译,然后系统按钮将翻译为用户选择的语言。

注意:这可能与此问题重复

You can't. MFMailComposeViewController is not customizable.

You can change the Development Region in your Info.plist so that your system buttons will be translated, or add translations in your app and the system buttons will be translated to the user's selected language.

Note: This is probably a duplicate with this question

幻想少年梦 2024-11-23 11:16:52

那是因为您已经使用系统项“样式”UIBarButtonSystemItem 设置了它。

您可以使用这些,或者使用自定义的:

  • UIBarButtonSystemItemDone,
    UIBarButtonSystemItemCancel,
    UIBarButtonSystemItemEdit,
    UIBarButtonSystemItemSave,
    UIBarButtonSystemItemAdd,
    UIBarButtonSystemItemFlexibleSpace,
    UIBarButtonSystemItemFixedSpace,
    UIBarButtonSystemItemCompose,
    UIBarButtonSystemItemReply,
    UIBarButtonSystemItemAction,
    UIBarButtonSystemItemOrganize,
    UIBarButtonSystemItemBookmarks,
    UIBarButtonSystemItemSearch,
    UIBarButtonSystemItemRefresh,
    UIBarButtonSystemItemStop,
    UIBarButtonSystemItemCamera,
    UIBarButtonSystemItemTrash,
    UIBarButtonSystemItemPlay,
    UIBarButtonSystemItemPause,
    UIBarButtonSystemItemRewind,
    UIBarButtonSystemItemFastForward,
    UIBarButtonSystemItemUndo, // iOS 3.0 及更高版本
    UIBarButtonSystemItemRedo, // iOS 3.0 及更高版本
    UIBarButtonSystemItemPageCurl, // iOS 4.0 及更高版本

哦,我没有看到标题中的“翻译”..

Thats because you have set it with a system item "style" UIBarButtonSystemItem.

You have these to use, or use a custom one:

  • UIBarButtonSystemItemDone,
    UIBarButtonSystemItemCancel,
    UIBarButtonSystemItemEdit,
    UIBarButtonSystemItemSave,
    UIBarButtonSystemItemAdd,
    UIBarButtonSystemItemFlexibleSpace,
    UIBarButtonSystemItemFixedSpace,
    UIBarButtonSystemItemCompose,
    UIBarButtonSystemItemReply,
    UIBarButtonSystemItemAction,
    UIBarButtonSystemItemOrganize,
    UIBarButtonSystemItemBookmarks,
    UIBarButtonSystemItemSearch,
    UIBarButtonSystemItemRefresh,
    UIBarButtonSystemItemStop,
    UIBarButtonSystemItemCamera,
    UIBarButtonSystemItemTrash,
    UIBarButtonSystemItemPlay,
    UIBarButtonSystemItemPause,
    UIBarButtonSystemItemRewind,
    UIBarButtonSystemItemFastForward,
    UIBarButtonSystemItemUndo, // iOS 3.0 and later
    UIBarButtonSystemItemRedo, // iOS 3.0 and later
    UIBarButtonSystemItemPageCurl, // iOS 4.0 and later

Oh i did not see the "Translating" from the title..

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