KMPDFEditAppendCustomView.swift 279 B

123456789101112131415161718
  1. //
  2. // KMPDFEditAppendCustomView.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by wanjun on 2023/10/10.
  6. //
  7. import Cocoa
  8. class KMPDFEditAppendCustomView: NSView {
  9. override func draw(_ dirtyRect: NSRect) {
  10. super.draw(dirtyRect)
  11. // Drawing code here.
  12. }
  13. }