我正在尝试在 iOS 6 上的 UICollectionView 中对重新排序的项目进行动画处理。
我写了这段代码:
NSMutableDictionary *from = [NSMutableDictionary dictionaryWithCapacity:self.count];
for (int ii = 0; ii < self.count; ii++) {
MyItem item = [self getItemAtIndex:(NSInteger)ii];
[from setObject:[NSNumber numberWithInt:ii] forKey:[NSNumber numberWithInt:item.id]];
}
[self sort];
[self.collectionView performBatchUpdates:^{
for (int ii = 0; ii < self.count; ii++) {
MyItem item = [self getItemAtIndex:(NSInteger)ii];
NSNumber *prevPos = (NSNumber *)[from objectForKey:[NSNumber numberWithInt:item.id]];
if ([prevPos intValue] != ii) {
NSIndexPath *from = [NSIndexPath indexPathForItem:prevPos.intValue inSection:0];
NSIndexPath *to = [NSIndexPath indexPathForItem:ii inSection:0];
[self.collectionView moveItemAtIndexPath:from toIndexPath:to];
}
}
} completion:nil];
因此,首先,我将项目的所有当前位置保存在字典中,然后将项目分类到新位置,然后检查所有项目,并将它们从旧位置移动到新位置。
当所有项目都显示在屏幕上时,这很有效,但如果列表长于 10,这使得某些项目当前不可见(因为它们位于列表的可见部分之上或之下),它会导致这些项目突然弹出在可见索引中存在并在其他地方设置动画,当动画停止时,它们会被隐藏。这看起来真的很奇怪,因为有些项目出现在其他项目之上......
这是 iOS 6 UICollectionView 的问题吗,我在这里做错了吗?