On 27 Feb 2012, at 03:51, Preston Sumner wrote:

> On Feb 26, 2012, at 7:38 PM, Graham Cox wrote:
> 
>> 
>> On 27/02/2012, at 1:27 PM, Karl Goiser wrote:
>> 
>>> use double parentheses
>> 
>> 
>> Yes, but that's not what the poster was suggesting. I pointed out why that 
>> form is bad.
>> 
>> This is a solution, but so is Apple's recommended form.
>> 
>> --Graham
> 
> Out of curiosity, where does Apple recommend a particular form? Examples in 
> the online documentation are inconsistent in this regard.
> 
> Preston

The code snippet "Objective-C init Method" in Xcode takes this form.

i.e. 

- (id)init
{
    self = [super init];
    if (self) {
        <#initializations#>
    }
    return self;
}

Dave
------
David Kennedy (http://www.zenopolis.com)

_______________________________________________

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

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

Reply via email to