0
pdfファイルをプレビューできません。uitableviewをpdfに出力する
dispatch_async(dispatch_get_main_queue(), {() -> Void in
let pdfURL = NSURL(fileURLWithPath: NSHomeDirectory().stringByAppendingString("/sample1.pdf"))
let interactionController = UIDocumentInteractionController(URL: pdfURL)
interactionController.delegate = self
interactionController.presentPreviewAnimated(true)
})
これはpdfを開きますが、プレビューは利用できず、Simulatorでの動作は完璧です。