我想从网络服务器获取对照片的评论。服务器返回一个包含评论的数组。是否可以将 block 而不是注释数组附加到 NSMutableDictionary?
我希望 block 返回注释并将其值插入字典。
我的意思是有些人是这样想的(但它会产生编译错误):
NSArray* (^commentsBlock)(id responseObject) = ^(id responseObject){
return responseObject;
};
[self fetchCommentsForNode:[fileInfo objectForKey"nid"]
success: commentsBlock];
VDPhoto *photo = [VDPhoto photoWithProperties:
@{@"imageView": imageview,
@"title": [fileInfo objectForKey"title"],
@"comments" : commentsBlock,
}];
[photos addObject:photo];
Best Answer-推荐答案 strong>
在评论中进一步讨论你可能想做这样的事情......
在 block 中为 fetchCommentsForNode:success: 做一些内联的事情 - 更新字典:
NSMutableDictionary *properties = [@{@"imageView": imageview,
@"title": [fileInfo objectForKey"title"]} mutableCopy];
[self fetchCommentsForNode:[fileInfo objectForKey"nid"] success:^(id responseObject){
properties[@"comments"] = responseObject;
return responseObject;
}];
VDPhoto *photo = [VDPhoto photoWithProperties:properties];
[photos addObject:photo];
您所要做的就是确保 VDPhoto 中的 @property 将 properties 保存到 init 方法是 strong ,而不是 copy ,然后您可以查看字典,一旦 success block ,您将设置您的注释已被调用。
编辑:
更好的选择是将 @property (nonatomic, copy) NSArray *comments 属性添加到 VDPhoto ,然后将结果设置在 fetchCommentsForNode: 关于那个:
VDPhoto *photo = [VDPhoto photoWithProperties{@"imageView": imageview,
@"title": [fileInfo objectForKey"title"]}];
[photos addObject:photo];
[self fetchCommentsForNode:[fileInfo objectForKey"nid"] success:^(id responseObject){
photo.comments = responseObject;
return responseObject;
}];
关于ios - 将 block 回调插入到 NSMutableDictionary,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/23317041/
|