IndexPathを変更してUITableViewControllerからサブクラス化されたUITableViewCell(クラスは「MasterCell」と呼ばれます)を取得しようとしています。たとえば、最初の行のセルを取得します。
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:1 inSection:0];
MasterCell *cell = (MasterCell *)[self.tableView cellForRowAtIndexPath:indexPath];
これは私のviewWillAppearメソッドで発生します。残念ながら、デバッグ中のセルはゼロです。
異なるセル/行があり、viewWillAppearメソッドでいくつかの値を変更する必要があります。何かヒントはありますか?