Clean, Modern Objective-C
harlanhaskins.com
Clean, Modern Objective-C
1–10 of 48 posts
Re: Clean, Modern Objective-C
#2 - (void)doSomethingWithParameter:(NSString *)parameter;Re: Clean, Modern Objective-C
#3Re: Clean, Modern Objective-C
#4I'm surprised that he provides five versions of the method definition syntax and none of them are what Apple does and what I consider to be the standard: - (void)doSomethingWithParameter:(NSString *)parameter;
Re: Clean, Modern Objective-C
#5I'm surprised that he provides five versions of the method definition syntax and none of them are what Apple does and what I consider to be the standard: - (void)doSomethingWithParameter:(NSString *)parameter;
Re: Clean, Modern Objective-C
#6I'm surprised that he provides five versions of the method definition syntax and none of them are what Apple does and what I consider to be the standard: - (void)doSomethingWithParameter:(NSString *)parameter;
Re: Clean, Modern Objective-C
#7I'm surprised that he provides five versions of the method definition syntax and none of them are what Apple does and what I consider to be the standard: - (void)doSomethingWithParameter:(NSString *)parameter;
You're correct. I've updated the post with credit to you, thanks!
Re: Clean, Modern Objective-C
#8Earlier quoted context omitted.
You're correct. I've updated the post with credit to you, thanks!
No problem! Have you commonly come across all these variations? I have seen a couple different things but my experience working in objective-c written by others has been limited, so my impression was that the above was more widely accepted.
Re: Clean, Modern Objective-C
#9I'm surprised that he provides five versions of the method definition syntax and none of them are what Apple does and what I consider to be the standard: - (void)doSomethingWithParameter:(NSString *)parameter;
-(void) doSomethingWithParameter:(NSString *)parameter;