Ariel Gemilang
Ariel Gemilang

Reputation: 791

Remove done button in M13PDFKit swift

I'm using M13PDFKit and having a little problem. In the example the done button is not there, but when I try it shows. I don't know how to remove it. The done button looks like this. Im using Swift enter image description here

in View controller just like this

import UIKit
import M13PDFKit

class ViewController: UIViewController {

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if segue.identifier == "NEXT" {
        let viewer: PDFKBasicPDFViewer = segue.destinationViewController as! PDFKBasicPDFViewer
        viewer.enableBookmarks = true
        viewer.enableBookmarks = true
        viewer.enableOpening = true
        viewer.enablePrinting = true
        viewer.enableSharing = true
        viewer.enableThumbnailSlider = true
        //Load the document (pdfUrl represents the path on the phone of the pdf document you wish to load)
        let pdfUrl = "/Users/developer/Library/Developer/CoreSimulator/Devices/C8DC5F44-B2FC-4FC3-8E10-B87FC00791FA/data/Containers/Data/Application/047BE9AD-F43C-421E-B5B5-943B0C79B592/Documents/Yudi Seven.pdf"
        let document: PDFKDocument = PDFKDocument(contentsOfFile: pdfUrl, password: nil)
        viewer.loadDocument(document)
    }
}
}

Upvotes: 0

Views: 263

Answers (1)

Joe
Joe

Reputation: 8986

Goto PDFKBasicPDFViewer.m disable the line(line 247) that highlighted in the first image and run the project....

enter image description here

Output:

enter image description here

Upvotes: 1

Related Questions