是否可以找到我在tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath方法中单击的行的部分。
TIA
答案 0 :(得分:10)
indexPath参数的section属性可以访问,如下所示
[indexPath section];
OR
indexPath.section
答案 1 :(得分:2)
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.section==0)
{
// 1st Section of the tableView.
if(indexPath.row==0)
{
// 1st cell of the 1st section.
}
}
}
答案 2 :(得分:2)
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
int section = [indexPath section];
}
答案 3 :(得分:2)
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:
(NSIndexPath*)indexPath{
int section = [indexPath section];
NSLog(@"section %d",section);
}