collectionview添加表头的方法

给collectionView设置头标题视图:

​UIView *HeaderView = [[UIView alloc]initWithFrame:CGRectMake(0, -313, self.view.width, 313)];    

self.collectionView.contentInset = UIEdgeInsetsMake(313, 0, 0, 0);//上左下右    

​HeaderView.backgroundColor = [UIColor redColor];

 [self.collectionView addSubview:HeaderView];

你可能感兴趣的:(collectionview添加表头的方法)