• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: applicationWillTerminate: issue
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: applicationWillTerminate: issue


  • Subject: Re: applicationWillTerminate: issue
  • From: Michael de Haan <email@hidden>
  • Date: Mon, 24 Aug 2009 20:26:04 -0700

Hi Kyle,
FIrstly, thanks for this insight.


You should be saving your preferences immediately, as soon as they are changed in the UI. You should not be waiting for your app to quit.


That makes much more sense, and solves problem 1.

But, just so that I understand your other explanation,



1) Is what I am seeing expected behavior or am I doing something wrong.

You're going to have to post your code.



-applicationWillTerminate: doesn't magically get called. NSApplication posts this notification to the default notification center. NSApplication also automatically signs its delegate up for this notification.

So at some point your "preference class" (whatever that means) is
signing up for the application will terminate notification.  Does it
do this by making itself the app delegate?  If so, then that would be
why your "other" implementation of -applicationWillTerminate: doesn't
get called.

Kyle, from the "Cocoa Fundamentals Guide": "Although you can dynamically change the delegate, only one object can be a delegate at a time. Thus if you want multiple objects to be informed of a particular program event at the same time, you cannot use delegation."


So, if I understand you and the documentation correctly , even though I had implemented the delegate of NSApplication in **both** of my classes, **only** one of those classes will respond to "applicationWillTerminate:" at a time. If this is indeed correct, then I need to rethink the design of my application, and you have already suggested how to do this.


Michael. _______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: applicationWillTerminate: issue
      • From: Jason Foreman <email@hidden>
References: 
 >applicationWillTerminate: issue (From: Michael de Haan <email@hidden>)
 >Re: applicationWillTerminate: issue (From: Kyle Sluder <email@hidden>)

  • Prev by Date: Re: Adding Segmented Buttons to Toolbar.
  • Next by Date: Re: NSTableView stops updating.....
  • Previous by thread: Re: applicationWillTerminate: issue
  • Next by thread: Re: applicationWillTerminate: issue
  • Index(es):
    • Date
    • Thread