collectionView reloadData不起作用。代碼中出了什麼問題?如果我的問題是沒有足夠的瞭解,我已經在這個環節提到的細節 How to load content fast with images loading in background? 預先感謝您如何重新加載dispatch_async中的collectionViewCell?
-(void)setMovieDetail{
dispatch_async(bgQue, ^{
//code here..
[collectionView reloadData];
});
}
UIKit的方法需要對被稱爲主線程。 –
我在頭文件中調用了UIKIT方法。但不工作.. –