如何在dispatch_async中重新加载collectionViewCell?

时间:2014-03-03 12:57:52

标签: ios uicollectionviewcell dispatch

collectionView reloadData无效。代码有什么问题?如果我的问题不足以理解,我在这个链接中提到了细节 How to load content fast with images loading in background? 提前谢谢

-(void)setMovieDetail{
    dispatch_async(bgQue, ^{

        //code here..
        [collectionView reloadData];

    });
}

1 个答案:

答案 0 :(得分:0)

你有没有试过像:

[collectionView performSelectorOnMainThread:@selector(reloadData)
                                 withObject:nil
                              waitUntilDone:false];