具有流布局的水平滚动方向模式下的UICollectionView标题位置

时间:2013-01-29 09:27:53

标签: ios header uicollectionview flowlayout

我有带有水平滚动方向的Flow布局的ios UICollectionView。 在这种情况下,典型的标题位置位于单元格的左侧。

我想在标题单元格的顶部创建标题

您知道我该怎么做?

2 个答案:

答案 0 :(得分:5)

我使用DateFlowLayout解决了这个问题。

了解我如何在this other answer中配置它。

答案 1 :(得分:-7)

我认为您可以使用标题的标准行为获得所需内容。

设置它(可能在viewDidLoad中):

UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
flowLayout.headerReferenceSize = CGSizeMake(self.collectionView.bounds.size.width, 30);
// other setup
[self.collectionView setCollectionViewLayout:flowLayout];

然后回答标题视图:

#define MY_HEADER_LABEL_TAG 128

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {

    UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:
                                            UICollectionElementKindSectionHeader withReuseIdentifier:@"SectionHeader" forIndexPath:indexPath];
    UILabel *label = (UILabel *)[headerView viewWithTag:MY_HEADER_LABEL_TAG];
    if (!label) {
        label = [[UILabel alloc] initWithFrame:CGRectInset(headerView.bounds, 5, 5)];
        label.tag = MY_HEADER_LABEL_TAG;
        label.font = [UIFont boldSystemFontOfSize:12];
        label.textColor = [UIColor darkGrayColor];
        [headerView addSubview:label];
    }

    label.text = [NSString stringWithFormat:@"Section %d", indexPath.section];
    return headerView;
}