我就是这样打开文档选取器的

func openDocuments(){
        let documentPicker = UIDocumentPickerViewController(documentTypes: ["public.data"],in: .import)
        documentPicker.delegate = self
        documentPicker.modalPresentationStyle = .fullScreen

        self.present(documentPicker, animated: true) {
        }

    }

注意单元格如何翻转标签
ios - UIDocumentPickerViewController以阿拉伯语显示翻转的内容-LMLPHP
附言:
我有
UIView.appearance().semanticContentAttribute = .forceRightToLeft

因为我正在开发的应用程序只有阿拉伯语版本

最佳答案

简单的

documentPicker.view.semanticContentAttribute = .forceLeftToRight

修正了这个,但我还是觉得很奇怪。

关于ios - UIDocumentPickerViewController以阿拉伯语显示翻转的内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58790671/

10-11 05:31