回答
對於iOS 8及更高版本可以使用willDisplayCell的UICollectionViewDelegate
- (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath
請問:
-[<UICollectionViewDataSource> collectionView:cellForItemAtIndexPath:]
做的:
-[<UICollectionViewDelegate> collectionView:didEndDisplayingCell:forItemAtIndexPath:]
@Dave DeLong:didEndDisplayingCell是指從集合視圖中刪除*的單元格。來自Apple文檔「告訴代表指定的單元格已從集合視圖中刪除。」 –
@titaniumdecoy:即使某些單元已被回收,實際上也會調用「collectionView:cellForItemAtIndexPath:」。您需要決定是否要重複使用再生細胞或在此方法內創建新細胞。 –
- 1. 無法將UIImage顯示在UICollectionViewCell中
- 2. 子類UICollectionViewCell不顯示
- 3. UICollectionViewCell的子類不顯示
- 4. UICollectionViewCell有時不會顯示
- 5. 檢測是否顯示UICollectionViewCell
- 6. UICollectionViewCell不顯示任何
- 7. UICollectionViewCell在點擊時不顯示DetailView
- 8. 如何在UicollectionViewCell中顯示UItableView?
- 9. 不要在UICollectionViewCell中突出顯示UIImageViews
- 10. 如何確定何時顯示UICollectionViewCell?
- 11. 如何在UICollectionViewCell中顯示UITableView
- 12. 數據不顯示在UICollectionviewcell中?
- 13. 自定義UICollectionViewCell未顯示更改
- 14. 將div顯示爲行顯示爲div顯示爲列
- 15. 來顯示或不顯示
- 16. 從AS400顯示GetText顯示
- 17. 顯示動畫後顯示
- 18. 顯示圖像顯示partialy
- 19. 顯示/顯示內容
- 20. 顯示名稱未顯示
- 21. TMUX:在顯示命令提示時顯示顯示窗格?
- 22. 顯示提示
- 23. 示例顯示
- 24. UICollectionViewCell的實例顯示在UICollectionView的其他實例後面
- 25. 未顯示在UICollectionViewCell中的多個按鈕
- 26. UIImageView在UICollectionViewCell中顯示得非常小,雖然圖像很大
- 27. 如何在UICollectionviewCell中顯示圓形進度條?
- 28. UIImageView不顯示UICollectionViewCell中的下載圖像
- 29. UICollectionViewCell子類包含UIImageView插座不顯示圖像
- 30. UIImageView在UICollectionViewCell子類中顯示圖像越界
作爲iOS 8是當前版本,我會將其標記爲正確。謝謝! –