作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前我正在执行以下操作以迭代 NSMutableIndexSet:
if ([indexSet isNotNull] && [indexSet count] > 0){
__weak PNRHighlightViewController *weakSelf = self;
[indexSet enumerateIndexesUsingBlock:^(NSUInteger idx, BOOL *stop) {
if ([[self.highlightedItems_ objectAtIndex:idx] isNotNull]){
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:idx inSection: [weakSelf.collectionView numberOfSections]-1];
[weakSelf.collectionView reloadItemsAtIndexPaths:[NSArray arrayWithObject:indexPath]];
}
}];
}
我想生成一个 NSIndexPath 数组,然后在这些索引路径上重新加载整个 collectionView。所以基本上我想在 block 完成后调用重新加载。我该怎么做?
最佳答案
一种方法是,
[indexSet enumerateIndexesUsingBlock:^(NSUInteger idx, BOOL *stop) {
if ([[self.highlightedItems_ objectAtIndex:idx] isNotNull]){
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:idx inSection: [weakSelf.collectionView numberOfSections]-1];
//store the indexPaths in an array or so
}
if (([indexSet count] - 1) == idx) { //or ([self.highlightedItems_ count] - 1)
//reload the collection view using the above array
}
}];
}
关于iphone - 无 block 地遍历 NSMutableIndexSet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14365215/
我是一名优秀的程序员,十分优秀!