// // KMRightSideEmptyVC.swift // PDF Reader Pro // // Created by wanjun on 2023/3/24. // import Cocoa class KMRightSideEmptyVC: NSViewController { @IBOutlet weak var emptyImageView: NSImageView! @IBOutlet weak var emptyLabel: NSTextField! override func viewDidLoad() { super.viewDidLoad() // Do view setup here. updateUI() initLocalization() } // MARK: Private Methods func updateUI() -> Void { emptyLabel.font = NSFont.SFProTextRegularFont(12) emptyLabel.textColor = NSColor.km_init(hex: "#94989C") } func initLocalization() { emptyLabel.stringValue = NSLocalizedString("Show/Hide Annotation Properties Panel", comment: "") } }