美文网首页iOS自我学习库
collectionview添加表头的方法

collectionview添加表头的方法

作者: BlueBar | 来源:发表于2017-06-07 15:04 被阅读33次
给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添加表头的方法

    本文链接:https://www.haomeiwen.com/subject/retafxtx.html