这是对你们所有人的挑战......
我的 UICollectionView
女巫中有一个 UIViewController
正在正确加载。
我还有一个自定义 UICollectionViewCell
类女巫包含一个 UIButton
。
我用一些 NSArray
对象从我的服务器中检索了一个 UIImage
,以便为我的自定义 UICollectionViewCell
的按钮分配一个背景图像。
这是我的 cellForItemAtIndexPath
函数的代码:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath;
{
UserPhotoCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"userPhotoCell" forIndexPath:indexPath];
if (indexPath.section == 0) {
[[cell imageButton] setBackgroundImage:[userPublicImages objectAtIndex:indexPath.row] forState:UIControlStateNormal];
} else {
[[cell imageButton] setBackgroundImage:[userPrivateImages objectAtIndex:indexPath.row] forState:UIControlStateNormal];
}
return cell;
}
如您所见,非常简单。
奇怪的行为来了:如果我将所有自定义
UICollectionViewCell
放在 UICollectionView
的一个部分中,则性能还可以...有任何想法吗?
一些额外信息:
UICollectionView
有标题。自定义标题。此刻只是一个 UIView
和一个 UILabel
。- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
UICollectionReusableView *reusableView = nil;
if (kind == UICollectionElementKindSectionHeader) {
UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"collectionHeader" forIndexPath:indexPath];
UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0f, 0.0f, [headerView frame].size.width, 40.0f)];
if (indexPath.section == 0) {
[titleLabel setText:NSLocalizedStringFromTable (@"collectionTitle_publicPhotos", [[NSLocale preferredLanguages] objectAtIndex:0] , @"")];
} else {
[titleLabel setText:NSLocalizedStringFromTable (@"collectionTitle_privatePhotos", [[NSLocale preferredLanguages] objectAtIndex:0] , @"")];
}
[headerView addSubview:titleLabel];
reusableView = headerView;
}
return reusableView;
}
最佳答案
我想我已经找到了答案。出于某种奇怪的原因,[collectionView reloadData]
没有在主线程上被触发。所以,我的解决方案就是这么简单:
dispatch_async(dispatch_get_main_queue(), ^{
[_collectionUserPhotos reloadData];
});
现在, UICollectionView 根据需要立即更新。
一些注意事项:在使用队列之后,使用 AFNetworking 在自定义类的委托(delegate)方法中调用了这个
[collectionView reloadData]
。希望能帮助到你。关于ios - UICollectionView 刷新数据需要很长时间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16419645/