UITableViewDataSource方法,默认实现

时间:2011-11-29 23:46:00

标签: iphone

对于像

这样的方法
(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

如果我想在我的视图中为某些tableView实现它,而不是其他的,是否有办法返回默认实现? TIA

1 个答案:

答案 0 :(得分:0)

是。只需返回super的实现。

if (tableView == myTableView) {
  // create and return your custom header
}
else {
  return [super tableView:tableView viewForHeaderInSection:section];
}