如何实现包含行和列的表

时间:2012-11-21 08:37:52

标签: iphone ios uitableview

如何实现图像中的表格?表和行和列?可以告诉我对iphone的尊重吗

enter image description here

2 个答案:

答案 0 :(得分:1)

列只是一种幻觉。

这是通过继承UITableViewCell并将单元设计为具有UIImageView和三个UILabel来完成的。

将imageView和标签分配给子类的属性,您可以这样配置它......

Object *object = [self.datasource objectAtIndexPath:indexPath];

cell.imageView.image = object.image;
cell.subCategoryLabel.text = object.subcategory;
cell.dateLabel.text = object.dateString;
cell.scoreLabel.text = [NSString stringWithFormat:@"%i", object.score];

或类似的东西。

然后标签的布局给出了有列的错觉。

答案 1 :(得分:1)

您需要根据您的要求精确创建自定义单元格。通过添加行和列动态添加数据。在实现自定义单元格之前,请阅读此http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/TableViewCells/TableViewCells.html文档。