Swift UIDocumentinteractioncontroller выберите файл, чтобы получить общее количество страниц в файле и количество символов - PullRequest
0 голосов
/ 05 декабря 2018

Мой сценарий, я выбираю file (doc, pdf, txt, etc,..) из UIDocumentinteractioncontroller и загружаю в tableView.Здесь я могу получить имя файла и другие данные, но согласно моим requirement мне нужно получить file итоговую страницу count и итоговое character количество, Android я сделал, но я не знаюiOS как это сделать.Пожалуйста, помогите мне решить эту проблему.

// Creating UIDocumentInteractionController instance.
let documentInteractionController = UIDocumentInteractionController()

// This function will set all the required properties, and then provide a preview for the document

    func share(url: URL) {    
        documentInteractionController.url = url
        documentInteractionController.uti = url.typeIdentifier ?? "public.data, public.content"    
        documentInteractionController.name = url.localizedName ?? url.lastPathComponent    
        documentInteractionController.presentPreview(animated: true)    
    }
...