浏览代码

Fix compiler warning when downcasting ViewController

master
Matt Baer 6 年前
父节点
当前提交
0e2e48802a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      writeas/AppDelegate.swift

+ 1
- 1
writeas/AppDelegate.swift 查看文件

@@ -45,7 +45,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidBecomeActive(_ notification: Notification) {
if vc == nil {
vc = NSApplication.shared().mainWindow?.contentViewController as! ViewController
vc = NSApplication.shared().mainWindow?.contentViewController as? ViewController
}
}



正在加载...
取消
保存