KMCustomAlertView.swift 239 B

123456789101112131415161718
  1. //
  2. // KMCustomAlertView.swift
  3. // PDF Master
  4. //
  5. // Created by tangchao on 2022/12/1.
  6. //
  7. import Cocoa
  8. class KMCustomAlertView: NSView {
  9. override func draw(_ dirtyRect: NSRect) {
  10. super.draw(dirtyRect)
  11. }
  12. }