master
1#import "Cake.h"
2
3@implementation Cake
4+ (Cake *)initFromJSON:(NSDictionary *)jsonData;
5{
6 NSLog(@"%@", jsonData);
7 Cake *result = [[Cake alloc] init];
8 result.id = [[jsonData objectForKey:@"id"] integerValue];
9 result.name = [jsonData objectForKey:@"name"];
10 result.photo = [jsonData objectForKey:@"photo"];
11 return result;
12}
13
14@end