我ItemCollectionViewCell
像往常一样使用其父 ViewController 中的方法将可重用的自定义出列
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
ItemCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
}
但是在我的身上,ItemCollectionViewCell
我已经实现了该方法,该方法initWithFrame
仅在最初被调用,但在单元格出列以供重用时不会被调用。
在调用父视图控制器ItemCollectionView
后被重新添加到队列之前在内部触发的方法是什么?[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath]