4

ItemCollectionViewCell像往常一样使用其父 ViewController 中的方法将可重用的自定义出列

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    ItemCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
}

但是在我的身上,ItemCollectionViewCell我已经实现了该方法,该方法initWithFrame仅在最初被调用,但在单元格出列以供重用时不会被调用。

在调用父视图控制器ItemCollectionView后被重新添加到队列之前在内部触发的方法是什么?[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath]

4

1 回答 1

7

-[UICollectionReusableView prepareForReuse]是方法。是该方法的文档。

于 2013-01-09T20:25:07.390 回答