Skip to content

Instantly share code, notes, and snippets.

@nishabe
Last active August 12, 2018 18:22
Show Gist options
  • Save nishabe/262aebc6a6a9ec4a12b6c1c1889e4b63 to your computer and use it in GitHub Desktop.
Save nishabe/262aebc6a6a9ec4a12b6c1c1889e4b63 to your computer and use it in GitHub Desktop.
OBJC: A Typical init
- (instancetype)init {
self = [super init];
if (self) {
// perform initialization
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment