记录didSelectRowAtIndexPath中的特定行

时间:2011-05-22 15:11:14

标签: objective-c cocoa-touch ios uitableview didselectrowatindexpath

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

我有一个分组表格视图。如果我希望第1部分的第1行吐出NSLog,我该怎么做?另外,如果我想要第3部分的第2行来制作日志,会不同?到目前为止,我只是使用这种方法在笔尖之间转换。

1 个答案:

答案 0 :(得分:6)

污垢简单:

if(indexPath.row == 1 && indexPath.section == 1) {
  NSLog(@"Awesomeness");
} else if(indexPath.row == 2 && indexPath.section == 3) {
  NSLog(@"Something more awesome");
}