Last active
December 18, 2015 01:19
-
-
Save armstrongnate/5703132 to your computer and use it in GitHub Desktop.
base init method of NSObject
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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