123456789101112131415161718 |
- //
- // KMPDFEditAppendCustomView.swift
- // PDF Reader Pro
- //
- // Created by wanjun on 2023/10/10.
- //
- import Cocoa
- class KMPDFEditAppendCustomView: NSView {
- override func draw(_ dirtyRect: NSRect) {
- super.draw(dirtyRect)
- // Drawing code here.
- }
-
- }
|