我正在尝试在单击该窗口的相应按钮时显示NSWindow(关于 - > aboutWindow,preferences - > preferencesWindow)。当我单击按钮打开窗口时,它们会闪烁然后消失。我看到了一两篇关于如何修复它的帖子,但它相对模糊,以及在Objective-C中解释,而不是Swift。我想我知道问题是什么(实例在@IBAction
内创建,一旦动作完成就摆脱了实例),但我不确定如何修复它。
所有代码都在https://github.com/madebybright/Nimble/tree/windows
结束对修复的解释将非常感激。
答案 0 :(得分:0)
您只需将控制器的声明移出您的方法即可。试试这样:
let aboutController = AboutController(windowNibName: "About")
let preferencesController = PreferencesController(windowNibName: "Preferences")
func showAbout(sender: AnyObject) {
println("showing about window")
aboutController.showWindow(aboutController.aboutWindow)
}
func showPreferences(sender: AnyObject) {
println("showing preferences window")
preferencesController.showWindow(preferencesController.preferencesWindow)
}