2

tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath メソッドでクリックしている行のセクションを見つけることは可能ですか。

ティア

4

4 に答える 4

10

indexPath パラメータには、次のようにアクセス可能な section プロパティがあります

[indexPath section]; 

また

indexPath.section
于 2012-08-06T10:59:26.473 に答える
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.

   }
 }
}
于 2012-08-06T11:06:33.977 に答える