在UICollectionViewFlowLayout中传播单元格的问题

时间:2015-01-12 00:30:07

标签: ios objective-c uicollectionview uicollectionviewcell

我目前正在尝试使用动态大小的单元格在UICollectionViewFlowLayout中分隔出一些自定义单元格。我发现的是细胞之间的间距是不一致的。我一直在阅读布局,并且我已经实现了所有委托方法来控制最小尺寸,但这些似乎没有效果。这是现在的视图

enter image description here

这是我的大小调整代码:

在布局和视图委托中:

- (CGFloat) collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section {
    return 5;
}

- (CGFloat) collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section {
    return 5;
}

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

    Tag *tag = [[Search sharedManager] tagAtIndexPath:indexPath];
    NSString *labelText = tag[@"Name"];
    CGSize labelTextSize = [labelText sizeWithAttributes:@{NSFontAttributeName: [UIFont systemFontOfSize:8.0f]}];
    return labelTextSize;
}

自定义单元格

@implementation TagCellCollectionViewCell
- (id) initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        self.tagBtn.titleLabel.font = [UIFont systemFontOfSize:8.0f];
        self.tagBtn = [UIButton buttonWithType:UIButtonTypeCustom];
       // self.tagBtn.frame = CGRectMake(-frame.size.width/4+20, -frame.size.width/4+5, frame.size.width, frame.size.height);


       [[self.tagBtn layer] setBorderColor:[[UIColor colorWithRed:234.0f/255.0f green:99.0f/255.0f blue:74.0f/255.0f alpha:1.0f] CGColor]];
        [[self.tagBtn layer] setBorderWidth:1.0f];
        self.tagBtn.backgroundColor = [UIColor whiteColor];
        [self.tagBtn setTitleColor:[UIColor colorWithRed:234.0f/255.0f green:99.0f/255.0f blue:74.0f/255.0f alpha:1.0f] forState:UIControlStateNormal];

        [self.contentView addSubview:self.tagBtn];

    }

    return self;
}

@end

我在这里缺少什么会在每个细胞之间留出一致的空间?

1 个答案:

答案 0 :(得分:0)

这里的问题是从

返回的项目
- (CGSize) collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath

与minimumInterimSpacing值重叠。由于我正在寻找systemfontofsize = 8的东西,我需要确保我的临时间距超过该值。将它设置为我上面的5会导致它以奇怪的方式发生冲突,将单元格设置为15个空格均匀,因为单元格之间的像素数大于计算的大小。