如何更改表格部分的显示方式?

时间:2010-10-13 09:53:10

标签: iphone uitableview

我希望在UITableView中显示与内置行为不同的部分,将图像作为部分页眉和页脚。实现这一目标的最佳方式是什么?

1 个答案:

答案 0 :(得分:1)

实现那些UITableView-delegate方法:

 - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
 - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section

 - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
 - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section

如果你在tableView中返回nil,你甚至可以混合使用自定义标题和标准标题:viewForHeaderInSection:如果你提供了标题,那么tableView将使用标准的节标题。