在启用分页的情况下,UICollectionView不会滚动完整的320个点

时间:2014-12-13 00:45:20

标签: ios objective-c uicollectionview uicollectionviewlayout uicollectionviewdelegate

好吧让我说我有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.
}

1 个答案:

答案 0 :(得分:1)

不幸的是,您无法强制收集视图完全滚动到新页面。

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

例如,如果您的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中执行应急操作即可显示空白单元格(因为您的数据集实际上并未包含该项目的数据)。