为了自定义单元格,我们实现类继承 UITableViewCell。现在,要在分组的 UITableView 中自定义 Section 的标题(下图相同),怎么办?请指导我!
问问题
5665 次
2 回答
12
tableView:viewForHeaderInSection:
在您的表视图委托中实现。
于 2010-01-14T10:51:46.487 回答
6
从 iOS 5 开始,您还需要实现
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
此外
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
否则它将无法正常工作。
返回的对象可以是 UILabel 或 UIImageView 对象,也可以是自定义视图。此方法仅在同时实现 tableView:heightForHeaderInSection: 时才能正常工作。
于 2012-12-01T21:32:42.313 回答