开发者

How to quit cocoa app when windows close? [duplicate]

开发者 https://www.devze.com 2023-02-16 16:58 出处:网络
This question already has answers here: 开发者_如何转开发 Make a Cocoa application quit when the main window is closed?
This question already has answers here: 开发者_如何转开发 Make a Cocoa application quit when the main window is closed? (5 answers) Closed 9 years ago.

I need to quit Cocoa App when I click the red button on upper left.

How to quit cocoa app when windows close? [duplicate]

I found this page saying

So what you need to do first is have the window you want to close be connected to an IBOutlet in the nib. For this example i connected the window to an outlet named "mainWindow".

How can I do this? I found Windows in xib file, but how can I connect it to an IBOutlet in the nib?

Or, is there any way to quit the cocoa app clicking red button?

EDIT

I should have put the code in the automatically generated delegate file.


There is an optional method for the application's delegate which will do this automatically. All you have to do is add this to the implementation. You don't need to create an outlet or anything.

- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication {
    return YES;
}


Take a look at the NSApplicationDelegate protocol, especially to the applicationShouldTerminateAfterLastWindowClosed:method...

http://developer.apple.com/library/mac/#documentation/cocoa/reference/NSApplicationDelegate_Protocol/Reference/Reference.html

0

精彩评论

暂无评论...
验证码 换一张
取 消