Re: NSURLConnection unhappiness
Re: NSURLConnection unhappiness
- Subject: Re: NSURLConnection unhappiness
- From: Kyle Sluder <email@hidden>
- Date: Mon, 4 May 2009 17:13:22 -0400
On Fri, May 1, 2009 at 12:00 PM, Nick Hristov <email@hidden> wrote:
> One more comment on self->ivar... I used this approach because using [self
> connection] or self.connection (they are both the same thing) amount to an
> extra message call.
This is true, and sometimes you want to do this, while other times you
don't. But anywhere you do self->foo you can simply do foo, assuming
foo isn't shadowed by another variable identifier in the same scope.
Properties, methods, and variables (including ivars) all exist in
separate namespaces.
--Kyle Sluder
_______________________________________________
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