Skip to content

Instantly share code, notes, and snippets.

@EugeneRash
Last active January 3, 2016 05:49
Show Gist options
  • Save EugeneRash/8418347 to your computer and use it in GitHub Desktop.
Save EugeneRash/8418347 to your computer and use it in GitHub Desktop.
Better Objective-C init method
- (instancetype)init {
self = [super init];
if (self) {
// ...
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment