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