• 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: Modifying outside properties from NSOperation subclass
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Modifying outside properties from NSOperation subclass


  • Subject: Re: Modifying outside properties from NSOperation subclass
  • From: PCWiz <email@hidden>
  • Date: Mon, 14 Dec 2009 20:59:45 -0700

What if I used NSInvocationOperation like this:

NSInvocationOperation *myOperation = [[NSInvocationOperation alloc] initWithTarget:self
    selector:@selector(doResourceHungryTask) object:nil];
[operationQueue addOperation:myOperation];

"doResourceHungryTask" would be a method in my delegate class. Would I still need to lock/unlock (I'm modifying the class's properties from itself, not another class)? I'm not sure on the exact workings of NSInvocationOperation, I just found out about it.


On 2009-12-14, at 6:02 PM, Nick Zitzmann wrote:

>
> On Dec 14, 2009, at 5:54 PM, PCWiz wrote:
>
>> Its being loaded into an NSOperationQueue, and I'm using methods like setObject:forKey: on the dictionary, not replacing the whole thing.
>
> Then you need to lock and unlock everything that reads from or writes to the dictionary. Properties are no substitute for locking/unlocking the object, because atomic properties will protect the instance variable, but they won't protect the contents of the instance variable. @synchronized is the easy way of doing this, but depending on your needs, you might need NS(Recursive)Lock instead.
>
> Nick Zitzmann
> <http://www.chronosnet.com/>
>

_______________________________________________

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: Modifying outside properties from NSOperation subclass
      • From: Jens Alfke <email@hidden>
    • Re: Modifying outside properties from NSOperation subclass
      • From: Ken Thomases <email@hidden>
    • Re: Modifying outside properties from NSOperation subclass
      • From: Nick Zitzmann <email@hidden>
References: 
 >Modifying outside properties from NSOperation subclass (From: PCWiz <email@hidden>)
 >Re: Modifying outside properties from NSOperation subclass (From: Nick Zitzmann <email@hidden>)
 >Re: Modifying outside properties from NSOperation subclass (From: PCWiz <email@hidden>)
 >Re: Modifying outside properties from NSOperation subclass (From: Nick Zitzmann <email@hidden>)

  • Prev by Date: pls explain rotated iPhone coordinates to me
  • Next by Date: Re: Modifying outside properties from NSOperation subclass
  • Previous by thread: Re: Modifying outside properties from NSOperation subclass
  • Next by thread: Re: Modifying outside properties from NSOperation subclass
  • Index(es):
    • Date
    • Thread