Skip to content

Instantly share code, notes, and snippets.

@armstrongnate
Last active December 18, 2015 01:19
Show Gist options
  • Save armstrongnate/5703132 to your computer and use it in GitHub Desktop.
Save armstrongnate/5703132 to your computer and use it in GitHub Desktop.
base init method of NSObject
@implementation MyCustomClass
- (id)init
{
self = [super init];
if (self) {
// custom initializations
// use underscore assignment (_date = [NSDate date]) instead of setters and getters
}
return self;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment