これは非常にばかげたものになるでしょうが、私の 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 のみを出力することを期待していました。
ここで何が間違っていますか?