collectionview 使用 flow layout时, header的高度, 有方法设置吗?
1
eternityz 2015 年 3 月 30 日
- [UICollectionViewFlowLayout headerReferenceSize]
- [UICollectionViewDelegateFlowLayout collectionView:layout:referenceSizeForHeaderInSection:] |
2
tsinghan OP @eternityz 这方法是UICollectionViewDelegateFlowLayout 协议里面的, 我现在是 默认的flow layout, 没有自定义layout,所以就没有实现UICollectionViewDelegateFlowLayout协议~~
|
4
vincentxue 2015 年 3 月 31 日
@tsinghan 默认的 flow layout 不就是 UICollectionViewFlowLayout 吗... UICollectionViewDelegateFlowLayout 是遵循 UICollectionViewDelegate 协议的。
|
5
tsinghan OP @vincentxue 恩, 实现这个协议, 就好了
|