57

我有一个UICollectionView设置UICollectionViewDataSource,目前提供六个项目。这些比填满屏幕所需的要少。问题是我的收藏视图只有在有足够的项目填满屏幕时才会滚动(用 10、20 进行测试)。当显示较少的项目时,它甚至不会做我想要的反弹动画,它只是固定的。

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateCollectionViewData) name:UIDocumentStateChangedNotification object:nil];

    UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc]init];
    flowLayout.itemSize = CGSizeMake(160, 100);
    flowLayout.minimumInteritemSpacing = 0;
    flowLayout.minimumLineSpacing = 0;

    self.collectionView = [[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:flowLayout];
    [self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"Cell"];
    self.collectionView.delegate = self;
    self.collectionView.dataSource = self;
    self.collectionView.bounces = YES;
    [self.view addSubview:self.collectionView];
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return [self.collectionViewData count];
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
     UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];

    Expense *expense = [self.collectionViewData objectAtIndex:indexPath.row];

    UILabel *label = [[UILabel alloc]initWithFrame:cell.bounds];
    label.text = expense.value;
    label.backgroundColor = [UIColor clearColor];
    label.font = [UIFont fontWithName:@"Miso-Bold" size:30];
    label.textAlignment = NSTextAlignmentCenter;
    [cell addSubview:label];

    cell.backgroundColor = [UIColor colorWithRed:1 - (indexPath.row / 30.0f) green:0 blue:1 alpha:1];

    return cell;
}

谢谢你的帮助!

4

3 回答 3

187

bounces,尽管它的名字,不是正确的属性设置。您还需要设置alwaysBounceVertical和/或alwaysBounceHorizontal。从文档中:

如果此属性设置为 YES 并且bounces 为YES,则即使内容小于滚动视图的边界,也允许垂直拖动。默认值为 NO。


注意 IB 中令人困惑的名称 .. https://stackoverflow.com/a/18391029/294884

于 2013-06-06T16:16:57.120 回答
11

对于集合视图的属性检查器中的情节提要,应检查“反弹”和“垂直反弹”。

于 2013-12-20T12:11:15.430 回答
6

UICollectionView设置to 大小的高度UIView将使您的滚动问题被禁用。如果它的UICollectionView高度为 568 像素,那么只有在其中包含超过 568 像素的内容时才需要滚动。您应该将其设置为它所包含的视图的高度(与宽度相同)。

希望它可以帮助你。

于 2013-04-17T20:25:44.950 回答