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