Currently I am opening a pdf file in UIDocumentInteractionController
. My app needs to implement a swipe feature for opened files in this controller.
var interaction: UIDocumentInteractionController
interaction = UIDocumentInteractionController(url: URL(string: "<PDF FILE PATH>")!)
interaction.delegate = self
interaction.presentPreview(animated: true)
Comments
Post a Comment