(instancetype)initFromDictionary:(NSDictionary *)dictionary
{ShowLog
self = [super init];
if (self) {
_cid = StringValue(dictionary, KID);
_user = [[User alloc] initFromDictionary:DictionaryValue(dictionary, Kuser)];
_images = ArrayValue(dictionary, Kimages);
_content = StringValue(dictionary, Kcontent);
//_beCommented= [[Comment alloc] initFromDictionary:DictionaryValue(dictionary, KbeCommented)];
_createTime = DateValue(dictionary, KcreateTime);
_ownerId = StringValue(dictionary, KownerId);
}
return self;
}
註解那個行使程序進入了死循環,這個要怎麼改?