On Dec 14, 2010, at 10:01 AM, Keary Suska wrote:

> On Dec 13, 2010, at 12:01 PM, Matt Neuburg wrote:
> 
>>   self->firstResponder = tf;
> 
> Well, the proper syntax is self.firstResponder . Using the deference is 
> probably a back-door way to access the class struct. Unless I misunderstand 
> something....


'self->foo' is equivalent to 'foo' (both are transformed into an appropriate 
offset into instance storage). self.foo is equivalent to [self foo] or [self 
setFoo:] depending on context.
--
David Duncan

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to