我尝试使用UIAlertAction中的UIDocumentInteractionController将我的app创建的文件的开头委托给其他应用程序,如下所示:
// variable in the class
var documentController:UIDocumentInteractionController!
// the alertAction
let okAction = UIAlertAction(title: "Öffnen", style: .default, handler: { (_) in
self.documentController = UIDocumentInteractionController(url: filePath)
self.documentController.presentOpenInMenu(from: self.view.frame, in: self.view, animated: true)
})
问题是UIDocumentInteractionController始终以英语显示,即使设备语言不同。 我错过了什么? 我在哪里可以更改UIDocumentInteractionController的语言?
答案 0 :(得分:0)
rmaddy评论改变发展 - 语言工作。现在,UIDocumentInteractionController中的所有内容都以德语显示。