将标头添加到UICollectionView,而不是UICollectionView的部分

时间:2015-01-05 12:19:06

标签: ios storyboard uicollectionview

UITableView存在类似的功能。我可以为UITableViewUITableView中的每个部分添加标头。这里的问题是如何以编程方式将标题添加到UICollectionView?不是UICollectionView的每个部分。

1 个答案:

答案 0 :(得分:-1)

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

        UICollectionReusableView *reusableview = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"HeaderView" forIndexPath:indexPath];

        if (reusableview==nil) {
            reusableview=[[UICollectionReusableView alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
          }

        UILabel *label=[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
        label.text=[NSString stringWithFormat:@"Recipe Group #%li", indexPath.section + 1];
        [reusableview addSubview:label];
        return reusableview;
      }
      return nil;
  }