有什么方法可以获得uitableview标题的索引路径吗?
我有以下代码:
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
static NSString *CellIdentifier = @"cell";
LocationCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil){
[NSException raise:@"headerView == nil.." format:@"No cells with matching CellIdentifier loaded from your storyboard"];
}
与上面的委托方法一样,没有传递indexPath,我可以获得头的索引路径吗?
答案 0 :(得分:-2)
UITableView
中的节标题(或页脚)没有属性索引路径,但它确实提供了对您在问题中显示的委托方法中当前section
的访问权限。
请参阅Apple文档,了解UITableViewHeaderFooterView类参考下的表格视图页眉和页脚。