NSIndexPath サンプル
コーディング時に大枠を何処かからコピーペーストして修正実装
するパターンがよくあると思います。
実装時、コピペ用のテンプレートとしてご利用ください。
コードサンプル
■ セルのインデックスパスを手動で作成する場合 NSIndexPath *indexPath = [NSIndexPath indexPathForRow:1 inSection:0]; UITableViewCell *cell = ( *)[self.table cellForRowAtIndexPath:indexPath];