如何构建uiview以显示类似于Instagram的用户评论

时间:2014-09-19 04:04:19

标签: ios objective-c iphone

我很好奇构建视图的最佳方式,以显示类似于Instagram的用户评论。 http://imgur.com/lDSRAPs

我最好的猜测是它的表视图从后端加载每个用户注释。如果是这样,我如何添加"点击更多评论"功能?

1 个答案:

答案 0 :(得分:1)

是的,你是对的,你可以使用这样的方案:

enter image description here enter image description here

当然你应该正确设置:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

返回所需的单元格。 当用户点击更多评论按钮时,只需标记此行,删除此行,然后添加新评论行。