我尝试将我的部分编号设置为函数。我在用
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
我尝试从此函数重新加载表中的部分
-(void)headerButtonPushed:(id)sender
{
NSLog(@"Heder pressed: %d",[sender tag]);
if (_state == [sender tag])
_state = kAllSectionClose;
else
_state = [sender tag];
// Here i need to reload the specific section
}
我知道我有标签,但我需要使用的功能是
[tableView reloadSections:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
为此我需要索引路径..
我试试
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:[sender tag] inSection:0];
但我有错误吗?