Last active
October 29, 2024 04:32
-
-
Save derickito/ac332db155ffbf0cff712d1680bd9fc0 to your computer and use it in GitHub Desktop.
Revisions
-
derickito revised this gist
Oct 17, 2018 . No changes.There are no files selected for viewing
-
derickito created this gist
Oct 17, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ override func viewDidLoad() { createMenu() } private func createMenu() { let highlightItem = UIMenuItem(title: "Highlight", action: #selector(highlight(_:))) UIMenuController.shared.menuItems = [highlightItem] } @objc private func highlight(_ sender: UIMenuController?) { guard let currentSelection = pdfView.currentSelection else { return } let selections = currentSelection.selectionsByLine() guard let page = selections.first?.pages.first else { return } selections.forEach { selection in let highlight = PDFAnnotation(bounds: selection.bounds(for: page), forType: .highlight, withProperties: nil) highlight.endLineStyle = .square page.addAnnotation(highlight) } pdfView.clearSelection() }