- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
[view vChangeBackgroundToCyan];
}
后
[self.delegateForTableController.tvDelegated insertSections:[NSIndexSet indexSetWithIndex:ip.section] withRowAnimation:UITableViewRowAnimationRight];
以及如何称呼他们?
最佳答案
tableView:viewForHeaderInSection:返回的类必须是UITableViewHeaderFooterView的子类,才能调用tableView:willDisplayHeaderView:forSection:方法。
如果返回的 View 是其他类型的 View ,则不会调用tableView:willDisplayHeaderView:forSection:方法。