Re: Red button close
Re: Red button close
- Subject: Re: Red button close
- From: Ron Medina Ballesteros <email@hidden>
- Date: Tue, 6 Jan 2004 07:39:56 -0800
Look into NSApp -terminate:
This will call your applicationShouldTerminate.
The NSApplication class documentation provides more details on what
events occur when an app terminates/quits such as posting a
notification NSApplicationWillTerminateNotificiation.
~r
On Jan 5, 2004, at 11:53 PM, Jay Rimalrick wrote:
Is there a way to call an already implemented
applicationShouldTerminate function to get the red button to act as
open apple quit. I already have the applicationShouldTerminate
function working and call it like [self applicationShouldTerminate:
sender] from the windowShouldClose function. But it just closes the
window and does not quit the application.
can you offer any advice?
Thanks,
jay
---------- Original Message ----------------------------------
From: Ron Medina Ballesteros <email@hidden>
Date: Mon, 5 Jan 2004 22:12:47 -0800
You can implement the windowShouldClose method in the delegate of your
window.
In this method, you can then do whatever things you need to do when
the
window is closed
such as to save the document (assuming your implementing a doc based
app).
You need to return YES or NO if you want the window to close.
~r
On Jan 5, 2004, at 9:24 PM, Jay Rimalrick wrote:
what function will allow me to do commands when a person presses the
red button to close?
thanks,
jay
________________________________________________________________
Sent via the WebMail system at 1st.net
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
________________________________________________________________
Sent via the WebMail system at 1st.net
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.