tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath メソッドでクリックしている行のセクションを見つけることは可能ですか。
ティア
tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath メソッドでクリックしている行のセクションを見つけることは可能ですか。
ティア
indexPath パラメータには、次のようにアクセス可能な section プロパティがあります
[indexPath section];
また
indexPath.section
-(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.
}
}
}