collectionView reloadData无效。代码有什么问题?如果我的问题不足以理解,我在这个链接中提到了细节 How to load content fast with images loading in background? 提前谢谢
-(void)setMovieDetail{
dispatch_async(bgQue, ^{
//code here..
[collectionView reloadData];
});
}
答案 0 :(得分:0)
你有没有试过像:
[collectionView performSelectorOnMainThread:@selector(reloadData)
withObject:nil
waitUntilDone:false];