dequeueReusableCellWithIdentifier:
ペン先をインスタンス化していますか??
一度に画面に表示できるよりも多くのセルをインスタンス化しているように見えるので、私は尋ねます。(ただし、テーブル内の行の総数よりも少ない)
FRCTableViewDataSourceを使用して、テーブル ビューを Core Data のいくつかの Artist オブジェクトにバインドしています。それは問題ではないと思いますが、バニラ テーブル ビューのデータ ソースとして機能しているだけです。
cellForRowAtIndexPath の実装を次に示します (ログ ステートメントを追加しました)。
- (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *cellIdentifier = nil;
Class theCellClass = [self cellClassAtIndexPath:indexPath];
if ([theCellClass isSubclassOfClass:[FRCTableViewCell class]])
cellIdentifier = [theCellClass reuseIdentifier];
NSLog(@"%@", cellIdentifier);
UITableViewCell *cell = [tv dequeueReusableCellWithIdentifier:cellIdentifier];
NSLog(@"%@", cell);
...
return cell;
}
そして、これがawakeFromNibの私の実装です
- (void)awakeFromNib
{
NSLog(@"waking");
}
コンソール出力は次のようになります。
ArtistTableViewCell
waking
<ArtistTableViewCell: 0xc678ad0; baseClass = UITableViewCell; frame = (0 0; 295 50); opaque = NO; autoresize = RM+BM; layer = <CALayer: 0xc6789f0>>
TL;DR 私のテーブル ビューには、あなたのテーブル ビューよりも主導権があります。
何か案は?