Skip to content

Instantly share code, notes, and snippets.

@codeswimmer
Created January 23, 2012 16:47
Show Gist options
  • Select an option

  • Save codeswimmer/1664198 to your computer and use it in GitHub Desktop.

Select an option

Save codeswimmer/1664198 to your computer and use it in GitHub Desktop.
iOS: Convenience Initializer
-(id)initWithSomething:(id)somethingIn
{
self = [self init];
self.something = somethingIn;
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment