#import "TextParser.h" #import "NullText.h" #import @implementation TextParser + (Text *)parse:(NSDictionary *)json key:(NSString *)key { return json[key] ? [[Text alloc] initWithValue:json[key]] : [NullText new]; } @end