Как открыть файлы документа, например (.pdf,.doc,.docx) в ios mobile, когда действие кнопки выполняется с помощью swift3.0?
Мне нужно открыть UIDocumentPickerViewController
и это должно позволить пользователю выбирать все типы файлов. т.е..(.pdf,.doc) файлы, которые я использовал UIDocumentPickerViewController
метод. мой код:
UIDocumentPickerDelegate, UIDocumentMenuDelegate
в моем объявлении класса
//загрузить файл
func OpenFile(){
let importMenu = UIDocumentMenuViewController(documentTypes: [String(kUTTypePNG),String(kUTTypeImage)], in: .import)
importMenu.delegate = self
importMenu.modalPresentationStyle = .fullScreen
self.present(importMenu, animated: true, completion: nil)
}
@available(iOS 8.0, *)
public func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentAt url: URL) {
let cico = url as URL
print("The Url is : \(cico)")
do {
let weatherData = try NSData(contentsOf: cico, options: NSData.ReadingOptions())
print(weatherData)
let activityItems = [weatherData]
let activityController = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)
if UI_USER_INTERFACE_IDIOM() == .phone {
self.present(activityController, animated: true, completion: { _ in })
}
else {
let popup = UIPopoverController(contentViewController: activityController)
popup.present(from: CGRect(x: CGFloat(self.view.frame.size.width / 2), y: CGFloat(self.view.frame.size.height / 4), width: CGFloat(0), height: CGFloat(0)), in: self.view, permittedArrowDirections: .any, animated: true)
}
} catch {
print(error)
}
//optional, case PDF -> render
//displayPDFweb.loadRequest(NSURLRequest(url: cico) as URLRequest)
}
@available(iOS 8.0, *)
public func documentMenu(_ documentMenu: UIDocumentMenuViewController, didPickDocumentPicker documentPicker: UIDocumentPickerViewController) {
documentPicker.delegate = self
present(documentPicker, animated: true, completion: nil)
}
func documentPickerWasCancelled(_ controller: UIDocumentPickerViewController) {
print(" cancelled by user")
dismiss(animated: true, completion: nil)
}
В этом коде приложение будет зависать. причина в том Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'You cannot initialize a UIDocumentPickerViewController except by the initWithDocumentTypes:inMode: and initWithURL:inMode: initializers.
Я не знаю, как инициализировать initWithDocumentTypes:inMode.
Я новичок в iOS, кто-нибудь мне помочь??? не могли бы вы мне помочь..
4 ответа
Свифт 3*, 4*,
Чтобы открыть документ и выбрать любой документ, вы используете UIDocumentPickerViewController
тогда все документы, представленные в вашем iCloud, Files и в Google Drive, будут показаны, если Google Drive подключен к пользовательскому устройству. Затем выбранный документ необходимо загрузить в ваше приложение и оттуда вы можете показать его в WKWebView
,
@IBAction func uploadNewResumeAction(_ sender: Any) {
/* let documentPicker = UIDocumentPickerViewController(documentTypes: ["com.apple.iwork.pages.pages", "com.apple.iwork.numbers.numbers", "com.apple.iwork.keynote.key","public.image", "com.apple.application", "public.item","public.data", "public.content", "public.audiovisual-content", "public.movie", "public.audiovisual-content", "public.video", "public.audio", "public.text", "public.data", "public.zip-archive", "com.pkware.zip-archive", "public.composite-content", "public.text"], in: .import) */
let documentPicker = UIDocumentPickerViewController(documentTypes: ["public.text", "com.apple.iwork.pages.pages", "public.data"], in: .import)
documentPicker.delegate = self
present(documentPicker, animated: true, completion: nil)
}
extension YourViewController: UIDocumentPickerDelegate{
func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentAt url: URL) {
let cico = url as URL
print(cico)
print(url)
print(url.lastPathComponent)
print(url.pathExtension)
}
}
Примечание. Если вы собираетесь выбрать все файлы, используйте следующий код:
let documentPicker = UIDocumentPickerViewController(documentTypes: ["com.apple.iwork.pages.pages", "com.apple.iwork.numbers.numbers", "com.apple.iwork.keynote.key","public.image", "com.apple.application", "public.item","public.data", "public.content", "public.audiovisual-content", "public.movie", "public.audiovisual-content", "public.video", "public.audio", "public.text", "public.data", "public.zip-archive", "com.pkware.zip-archive", "public.composite-content", "public.text"], in: .import)
В вашем методе действий.
Просто разместив этот ответ, чтобы помочь другому пользователю в этом.
Чтобы открыть конкретные файлы документов (.pdf, .doc, .docx), используя UIDocumentPickerViewController
в Swift:
documentTypes будет
Импортировать import MobileCoreServices
["com.microsoft.word.doc","org.openxmlformats.wordprocessingml.document", kUTTypePDF as String]
Пример:
let importMenu = UIDocumentPickerViewController(documentTypes: ["com.microsoft.word.doc","org.openxmlformats.wordprocessingml.document", kUTTypePDF as String], in: UIDocumentPickerMode.import)
importMenu.delegate = self
self.present(importMenu, animated: true, completion: nil)
На самом деле, вместо WebView вы также можете использовать QuickLook Framework, который предназначен для этой конкретной цели. Вы просто передаете местоположение файла и соответствуете протоколам. Он представит контроллер представления с документом внутри.
Он поддерживает следующий файл:
- документы iWork (страницы, цифры и ключевые слова)
- документы Microsoft Office (если они были созданы с помощью Office 97 или любой другой более новой версии)
- PDF файлы
- Изображений
- текстовые файлы
- документы в Rich-Text формате
- Файлы значений, разделенных запятыми (CSV)
Вот учебник от APPCODA, который описывает то же самое.
а также
Вот учебник, предоставленный версией Apple OBJ-C.
UIDocumentPickerViewController.init(documentTypes:in:)
иkUTType___
были устаревшими в iOS 14 и 15 соответственно. Вот как добиться того же в новых версиях iOS:
let contentTypes: [UTType] = [
.init(filenameExtension: "doc")!,
.init(filenameExtension: "docx")!,
.pdf
]
let documentPicker = UIDocumentPickerViewController.init(forOpeningContentTypes: contentTypes)
documentPicker.delegate = self
present(documentPicker, animated: true)