Skip to content

Instantly share code, notes, and snippets.

@kuronekomichael
Created January 17, 2012 02:52
Show Gist options
  • Save kuronekomichael/1624253 to your computer and use it in GitHub Desktop.
Save kuronekomichael/1624253 to your computer and use it in GitHub Desktop.
Standard Initializer
- (id) init
{
self = [super init];
if (self != nil) {
// init code
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment