1

我有一个基于文档的 iOS 应用程序,它使用UIDocumentBrowserViewController. 该应用程序允许创建文档,因此应用程序启动时出现的文件浏览器包含带有大号 + 符号和默认文本Create Document的标准按钮,如下图所示。

是否可以更改默认文本,使其更适合我的应用程序?例如,在 Numbers 应用程序中,文本是Create Spreadsheet而不是Create Document

我找不到与此问题相关的文档。

文档浏览器屏幕截图

4

1 回答 1

1

iOS 13 添加了该localizedCreateDocumentActionTitle属性以允许您更改按钮的标题。

/// Title of the Create Document button (default: "Create Document”).
@available(iOS 13.0, *)
open var localizedCreateDocumentActionTitle: String
于 2020-06-05T11:28:09.080 回答