Skip to content

Instantly share code, notes, and snippets.

@funkyboy
Created April 1, 2014 13:43
Show Gist options
  • Save funkyboy/9914239 to your computer and use it in GitHub Desktop.
Save funkyboy/9914239 to your computer and use it in GitHub Desktop.
- (instancetype) initWithDictionary:(NSDictionary *)dictionary {
self = [super initWithDictionary:dictionary];
if (self) {
_postTitle = dictionary[@"postTitle"];
_postBody = dictionary[@"postBody"];
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment