这将是一件非常愚蠢的事情,但我的 cellForRowAtIndexPath 中有这段代码:
if ([self.indexPathSelected compare:indexPath] == NSOrderedSame)
{
NSLog(@" %d %d %d %d", self.indexPathSelected.row, self.indexPathSelected.section, indexPath.row, indexPath.section);
}
这打印:
0 0 0 0
0 0 1 0
0 0 2 0
0 0 3 0
0 0 4 0
0 0 5 0
我原以为它只会打印 0 0 0 0。
我在这里做错了什么?