博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIcollectionView 加入尾部视图
阅读量:6576 次
发布时间:2019-06-24

本文共 1509 字,大约阅读时间需要 5 分钟。

hot3.png

static NSString *identify = @"collectionViewCell";static NSString *identifier = @"Cell";
//UICollectionView    flowLayout = [[UICollectionViewFlowLayout alloc]init];    [flowLayout setScrollDirection:UICollectionViewScrollDirectionVertical];//设置其布局方向    flowLayout.sectionInset = UIEdgeInsetsMake(5, 10, 5, 10);//设置其边界    //显示尾部视图的很重要的一行代码,不写:imp:呵呵flowLayout.footerReferenceSize = CGSizeMake(screenWidth, 105);    _collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, imagView.bottom+10, screenWidth, screenHeight-64-21) collectionViewLayout:flowLayout];    _collectionView.dataSource = self;    _collectionView.delegate = self;    _collectionView.backgroundColor = [UIColor clearColor];//注册    [_collectionView registerClass:[MyCollectionViewCell class] forCellWithReuseIdentifier:identify];    [self.view addSubview:_collectionView];    //注册尾部视图    [_collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:_UICollectionElementKindSectionFooter_ withReuseIdentifier:identifier];
//创建视图方法-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{    UICollectionReusableView *view = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:identifier forIndexPath:indexPath];     view.backgroundColor = [UIColor blueColor];    return view;}

转载于:https://my.oschina.net/wenchengxu123/blog/502641

你可能感兴趣的文章
Python编程系列教程第14讲——继承
查看>>
安利一款基于element的大数据树形表格
查看>>
git log
查看>>
Mint UI 使用采坑记
查看>>
数据库下载_Office下载
查看>>
leetcode-771-Jewels and Stones(建立哈希表,降低时间复杂度)
查看>>
字符串分割函数(New)
查看>>
第一阶段:前端开发_使用JS完成注册页面表单校验
查看>>
深入了解JavaScript对象(1)--原始类型和引用类型
查看>>
mybatis中动态SQL之trim详解
查看>>
SDN第5次上机作业
查看>>
响应式布局
查看>>
第六周项目4-成员函数、友元函数和一般函数有区别
查看>>
小试牛刀C#作为脚本语言执行解密
查看>>
Intellij创建简单Springboot项目
查看>>
编译升级php之路(5.5.7 到 5.5.37)
查看>>
31. ExtJs4回车事件监听
查看>>
ClassLoader.getResourceAsStream(name);获取配置文件的方法
查看>>
java 类加载器
查看>>
洛谷P2179 [NOI2012]骑行川藏(拉格朗日乘数法)
查看>>