0
// 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의 언어는 어디에서 변경할 수 있습니까?
무엇을 의미합니까? 취소 버튼은 항상 영어로되어 있습니까? –
앱이 영어가 아닌 다른 언어 버전을 지원합니까? – rmaddy
@LeoDabus 예 취소 버튼은 항상 영어로되어 있으며 다른 앱의 텍스트도 영어로 표시됩니다. 예를 들어 "메모에 추가" – LarsGvB