123456789101112131415161718192021 |
- //
- // KMLeftSideViewController+Search.swift
- // PDF Master
- //
- // Created by tangchao on 2023/12/24.
- //
- import Foundation
- // MARK: - Menu
- extension KMLeftSideViewController {
- @objc func addAnnotationsForSelections(_ sender: NSMenuItem) {
- guard let selections = sender.representedObject as? [CPDFSelection], selections.count > 0 else {
- return
- }
- for selection in selections {
- self.listView.addAnnotation(with: CAnnotationType(rawValue: sender.tag) ?? .circle, selection: selection, page: selection.page, bounds: selection.bounds)
- }
- }
- }
|