Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make a Cocoa application quit when the main window is closed?

How to make a Cocoa application quit when the main window is closed? Without that you have to click on the app icon and click quit in the menu.

like image 643
Kristina Brooks Avatar asked May 28 '10 02:05

Kristina Brooks


4 Answers

You can implement applicationShouldTerminateAfterLastWindowClosed: to return YES in your app's delegate. But I would think twice before doing this, as it's really unusual on the Mac outside of small "utility" applications like Calculator and most Mac users will not appreciate your app behaving so strangely.

like image 115
Chuck Avatar answered Oct 31 '22 13:10

Chuck


Add this code snippet to your app's delegate:

-(BOOL) applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)app {
    return YES;
}
like image 22
Steve McLeod Avatar answered Oct 31 '22 15:10

Steve McLeod


As the question is mainly about Cocoa programming and not about a specific language (Objective-C), here is the Swift version of Chuck's and Steve's answer:

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {

    func applicationShouldTerminateAfterLastWindowClosed(sender: NSApplication) -> Bool {
        return true
    }

    // Your other application delegate methods ...

}

For Swift 3 change the method definition to

func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
    return true
}
like image 10
Martin R Avatar answered Oct 31 '22 14:10

Martin R


You should have an IBOutlet to your main window. For Example: IBOutlet NSWindow *mainWindow;

- (void)awakeFromWindow {
    [mainWindow setDelegate: self];
}
- (void)windowWillClose:(NSNotification *)notification {
    [NSApp terminate:self];
}

If this does not work you should add an observer to your NSNotificationCenter for the Notification NSWindowWillCloseNotification. Don't forget to check if the right window is closing.

like image 8
papr Avatar answered Oct 31 '22 14:10

papr