如何检查,哪一部分已被挖掘?

时间:2011-07-28 05:34:53

标签: iphone objective-c uitableview

在具有多个部分的普通表中(我通过委托来定义部分),现在在didSelectRowAtIndexPath中,它以每个部分的首字母开头。现在,我如何检查row来自哪个部分?

3 个答案:

答案 0 :(得分:1)

Indexpathsectionrow个成员组成。因此,您可以使用该属性并获取行yourindexpath.section的{​​{1}}部分。

答案 1 :(得分:1)

在表格视图委托中,您可以使用

indexPath.section;     indexPath.row 找到该部分的部分和行

答案 2 :(得分:0)

didSelectRowAtIndexPath: 简单的地方填写以下内容:

NSLog(@"SECTION: %i ROW: %i",indexPath.section,indexPath.row);