0

静态我已经提到 UICollectionView 的部分数量为 3,如下所示:

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
            return 3;
    }

现在我试图在应用程序启动时显示第二部分而不是显示第一部分。因为 UICollectionView 是 UIScrollView 的子类。我写的代码是:

[mCollectionView scrollRectToVisible:CGRectMake(0, 600, 320, 568) animated:YES];

但它只显示第一部分。有没有其他方法可以在 UICollectionView 中显示第二部分。

4

1 回答 1

1

试试这个

[collectionview scrollToItemAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:1] atScrollPosition:UICollectionViewScrollPositionTop animated:YES];
于 2013-08-22T05:11:12.290 回答