我在如何使用自定义UITableViewCells填充Grouped UITableView时遇到了很多麻烦。任何人都可以指点我一个关于如何做到这一点的教程吗?或者有没有人有一个示例,当使用自定义UITableViewCells创建一个Grouped UITableView时,cellForRowAtIndexPath方法会是什么样子?
感谢。
答案 0 :(得分:0)
以下是一些指导原则:
分组UITableView中的每个组都是一个部分。然后方法:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == 0) {
// Here is first group
if (indexPath.row == 0) {
// Here is first row in a first group
}
}
}
我希望这对你有意义
答案 1 :(得分:0)
我认为你可以浏览TableViewSuite sample codes。