Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show and hide window instead of terminating app on close click in cocoa app

I have been trying to show hide window on close(red button) click on the window. I would like to do is hide the window and when a user clicks on my app again it will show again.

Thanks in advance to all the developers who provide an answer. I am new to Cocoa apps. I am iOS developers so I have not much knowledge about cocoa apps.

I tried to hide(:) method and orderOut(:) method too. but not working.

class ViewController : NSViewController, NSWindowDelegates {

    override func viewDidAppear() {
         self.view.window?.delegate = self
    }

    func windowShouldClose(_ sender: NSWindow) -> Bool {
         //NSApplication.shared.terminate(self)
         //NSApp.hide(self)
         //self.view.window?.orderOut(sender)
        return false
    }
}

I want to create a timer app which runs in the background if user click on close it will hide instead of terminating. and when he clicks again from dock menu it will reopen the window.

like image 501
Viral Shah Avatar asked Dec 24 '22 01:12

Viral Shah


1 Answers

I'm not much into Mac OS development, but I think you should inherit from NSWindowController like this:

class MyWindowController: NSWindowController, NSWindowDelegate {

    func windowShouldClose(_ sender: NSWindow) -> Bool {
        NSApp.hide(nil)
        return false
    }
}

Then you need just open your Main (or whatever name you have) storyboard, choose Window Controller and set your MyWindowController to it:

enter image description here

I tried and it worked for me.

like image 166
SIlvester Avatar answered Dec 29 '22 11:12

SIlvester