ViewController.swift 576 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ViewController.swift
  3. // ProcessCheckFile
  4. //
  5. // Created by 朱东勇 on 2022/11/17.
  6. //
  7. import Cocoa
  8. class ViewController: NSViewController {
  9. override func viewDidLoad() {
  10. super.viewDidLoad()
  11. ProcessFont.processRTFAutoFile(.FontNameWithSize)
  12. // ProcessFont.processRTFAutoFile(.Color)
  13. // ProcessFont.processRTFAutoFile(.SpecialCharacter)
  14. // ProcessFont.processRTFAutoFile(.Chinese)
  15. }
  16. override var representedObject: Any? {
  17. didSet {
  18. // Update the view, if already loaded.
  19. }
  20. }
  21. }