KMSignatureCellView.swift 411 B

1234567891011121314151617181920
  1. //
  2. // KMSignatureCellView.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by lxy on 2022/12/13.
  6. //
  7. import Cocoa
  8. class KMSignatureCellView: NSTableCellView {
  9. @IBOutlet weak var signatureImageView: NSImageView!
  10. @IBOutlet weak var contenLabel: NSTextField!
  11. @IBOutlet weak var leftOffset: NSLayoutConstraint!
  12. override func draw(_ dirtyRect: NSRect) {
  13. super.draw(dirtyRect)
  14. }
  15. }