12345678910111213141516171819202122 |
- //
- // KMNPDFInsertBlankWindowController.swift
- // PDF Reader Pro
- //
- // Created by 丁林圭 on 2024/10/23.
- //
- import Cocoa
- class KMNPDFInsertBlankWindowController: NSWindowController {
-
- deinit {
- KMPrint("KMNPDFInsertBlankWindowController deinit.")
- }
- override func windowDidLoad() {
- super.windowDidLoad()
- // Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
- }
-
- }
|