Re: atomic properties and KVC

2010-07-15 Thread Mike Abdullah
There is nothing magic about KVC in this regard. It is a layer atop the methods your class generates. On 15 Jul 2010, at 06:50, Michael Link wrote: > If I have a property declared and synthesized (e.g. > @property BOOL foo; > > and I use a KVC method to access the value of foo (e.g. > [object v

Re: atomic properties and KVC

2010-07-14 Thread Bill Bumgarner
On Jul 14, 2010, at 10:50 PM, Michael Link wrote: > and I use a KVC method to access the value of foo (e.g. > [object valueForKey:@"foo"]; > > is it still accessed atomically? Yes. b.bum ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Pleas

atomic properties and KVC

2010-07-14 Thread Michael Link
If I have a property declared and synthesized (e.g. @property BOOL foo; and I use a KVC method to access the value of foo (e.g. [object valueForKey:@"foo"]; is it still accessed atomically? -- Michael ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple