Skip to content

Instantly share code, notes, and snippets.

@jhurliman
Created June 28, 2014 08:00
Show Gist options
  • Save jhurliman/3af9c85b798bfafd327c to your computer and use it in GitHub Desktop.
Save jhurliman/3af9c85b798bfafd327c to your computer and use it in GitHub Desktop.
init method in Objective-C
- (id)init
{
if (self = [super init]) {
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment