解決CollectionView TableView reloadData或者reloadSections時的刷新的閃爍問題

在使用reloadData 或者是 對Section Cell 進行刷新時會出現屏幕閃爍的問題能夠用下面的方法解決,spa

 

[UIView performWithoutAnimation:^{ 
[self.collectionView reloadSections:[NSIndexSet indexSetWithIndex:4]]; 
}];

[UIView performWithoutAnimation:^{ 
[self.collectionView reloadData]; 
}];
相關文章
相關標籤/搜索