用UICollectionView搭建了一个图片浏览器,但是点击小图跳转到这个图片浏览器的时候,滚动到指定 item 无效,总是显示第0个 item。
点击小图创建 UICollectionView 添加到 MyController.view 然后调用
- (void)scrollToItem:(NSInteger)index {
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:index inSection:0];
[self scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:YES];
}
无效。