あなたがUICollectionViewControllerをサブクラス化している場合は、この使用することができるはず:あなたはおそらくこれを使用する必要がありますUICollectionViewControllerをサブクラス化されていない場合は
override func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
super.collectionView(collectionView, willDisplay: cell, forItemAt: indexPath)
}
を:
@objc(collectionView:willDisplayCell:forItemAtIndexPath:) func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
}
私は両方持っています私が更新している私のアプリのコレクションビューの種類は、それが私のために働くものです。