In the method for

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // do stuff here
}

I have a grouped table view. If I wanted Row 1 of Section 1 to spit out an NSLog, how would I do that? Also, would it be different if I wanted Row 2 of Section 3 to make a log? So far, I've only been using this method to transition between nibs.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Dirt simple:

if(indexPath.row == 1 && indexPath.section == 1) {
  NSLog(@"Awesomeness");
} else if(indexPath.row == 2 && indexPath.section == 3) {
  NSLog(@"Something more awesome");
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.