可可窗口没有显示在macOS Sierra上

时间:2018-01-03 19:40:11

标签: swift macos cocoa nswindow nswindowcontroller

我有以下代码在我的macOS应用程序中显示一个新窗口。这是completionHandler的{​​{1}}。

NSOpenPanel

let mainStoryBoard = NSStoryboard(name: NSStoryboard.Name(rawValue: "Main"), bundle: nil) let windowController = mainStoryBoard.instantiateController(withIdentifier: NSStoryboard.SceneIdentifier(rawValue: "WindowController")) as! NSWindowController let myController = windowController.window!.contentViewController as! ViewController myController.imageView.image = mainImage windowController.showWindow(self) 定义在上面。

问题是这段代码在macOS High Sierra上完美运行,但在macOS Sierra上,窗口有时会显示一瞬间然后消失。

为什么这会在macOS High Sierra上运行,而不是macOS Sierra?

2 个答案:

答案 0 :(得分:2)

我能够通过修正windowController的范围来解决这个问题。将变量声明移到完成处理程序之上并将其设置为nil以开始解决问题。

我还添加了NSWindowDelegate并使用函数windowWillClosewindowController设置回nil以确保其正确发布。

答案 1 :(得分:0)

取消选中NSWindow的Deferred选项。