12345678910111213141516171819 |
- //
- // KMPDFSplitView.swift
- // PDF Reader Pro
- //
- // Created by Niehaoyu on 2024/10/29.
- //
- import Cocoa
- class KMPDFSplitView: NSSplitView {
- override func draw(_ dirtyRect: NSRect) {
- super.draw(dirtyRect)
- // Drawing code here.
- }
-
-
- }
|