• 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: Stupid objective-c question
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Stupid objective-c question


  • Subject: Re: Stupid objective-c question
  • From: Doug Hill <email@hidden>
  • Date: Thu, 22 Sep 2016 17:20:01 -0700

> On Sep 22, 2016, at 4:19 PM, Sandor Szatmari <email@hidden> wrote:
>
> So there was lots of discussion and plenty of 'don't do anything that equates to this' --> @"myString" == @"myString", and I agree.
>
> I wanted to get some opinions on the following which I have done in the past and perceive as different because the string constant is introduced and defined once and only once.
>
> // my .m file
> static NSString * const kMyContext = @"my fantastic context";
>
> // later on
> - (void) observeValueForKeyPath: (NSString *) keyPath   ofObject: (id) object
>                       change: (NSDictionary *) change context: (void *) context
> {
>  if ( context == kMyContext )
>  { // do my stuff }
>  else
>  // call super
> }
>
> My interpretation of how to use context has been as an arbitrary pointer...  Does this run afoul of anyone's sensibility?
>
> Sandor Szatmari

This appears to follow Apple recommended practice. I think after all the discussion on this thread, pretty much the only thing you should do is compare the context to a static pointer. And a static string maybe makes it easier to identify a particular context. I’m actually changing some old code right now to use these recommendations.

Good luck!

Doug Hill


_______________________________________________

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


References: 
 >Stupid objective-c question (From: Gabriel Zachmann <email@hidden>)
 >Re: Stupid objective-c question (From: Graham Cox <email@hidden>)
 >Re: Stupid objective-c question (From: Quincey Morris <email@hidden>)
 >Re: Stupid objective-c question (From: Graham Cox <email@hidden>)
 >Re: Stupid objective-c question (From: Doug Hill <email@hidden>)
 >Re: Stupid objective-c question (From: Jens Alfke <email@hidden>)
 >Re: Stupid objective-c question (From: Gabriel Zachmann <email@hidden>)
 >Re: Stupid objective-c question (From: Quincey Morris <email@hidden>)
 >Re: Stupid objective-c question (From: Sandor Szatmari <email@hidden>)

  • Prev by Date: Re: Stupid objective-c question
  • Next by Date: Re: How to update UI from a background thread
  • Previous by thread: Re: Stupid objective-c question
  • Next by thread: Re: Stupid objective-c question
  • Index(es):
    • Date
    • Thread