1

好吧,可以说我有 20 个单元格的 UICollection 在启用分页的情况下水平滚动并且可以在每页上容纳 9 个单元格,当我将其设为 10 个单元格而不是创建第二个页面时,它的移动刚好足以容纳页面上的第 10 个单元格。我希望它在滚动时在自己的页面上显示第 10 个单元格。

我也尝试过更改 collectionview.contentsize 但出于某种原因,无论我做什么,它都保持不变。

这是我的代码 -

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{

    return CGSizeMake(82, 119);
}

- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {

    return UIEdgeInsetsMake(20, 10, 50, 10);
}



- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    customCell *cell= (customCell*)[collectionView dequeueReusableCellWithReuseIdentifier:@"cellIdentifier" forIndexPath:indexPath];


    return (UICollectionViewCell*)cell;
}

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

}
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    return 20;
}

- (void)viewDidLoad {





    UICollectionViewFlowLayout *layout=[[UICollectionViewFlowLayout alloc] init];
    _collectionView=[[UICollectionView alloc] initWithFrame:self.view.frame collectionViewLayout:layout];
    [_collectionView setDataSource:self];
    [_collectionView setDelegate:self];

    [_collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellIdentifier"];
    [_collectionView setBackgroundColor:[UIColor lightGrayColor]];


    [layout setScrollDirection:UICollectionViewScrollDirectionHorizontal];
    _collectionView.pagingEnabled = YES;

    layout.minimumInteritemSpacing = 15;
    layout.minimumLineSpacing = 25;

    [_collectionView setContentInset:UIEdgeInsetsMake(65, 0, 0, 0)];



    _collectionView.allowsMultipleSelection = YES;
    [self.view addSubview:_collectionView];



    [super viewDidLoad];
    // Do any additional setup after loading the view.
}
4

1 回答 1

2

不幸的是,您不能强制集合视图完全滚动到这样的新页面。

相反,只需计算填写页面所需的单元格数量并将空单元格添加到数据集的末尾即可。

例如,如果您的 NSArray 数据中有 19 项,则再添加 8 项以使总数达到 27。

在您的collectionView:numberOfItemsInSection:委托中,执行以下操作:

return (dataArray.count % 9 == 0) ? dataArray.count : ((dataArray.count/9|0)+1)*9;
// 17 returns 18
// 19 returns 27

只需确保执行应急操作cellForItemAtIndexPath以显示空白单元格(因为您的数据集实际上不包含该项目的数据)。

于 2014-12-13T01:24:00.133 回答