欢迎光临
我们一直在努力

热词,热词布局,UICollectionView,集合视图

建站超值云服务器,限时71元/月

热词,热词布局,UICollectionView,集合视图

项目介绍:

ZZHotKeysMenu

ZZHotKeysMenu 自定义布局,继承自 UICollectionViewLayout

关键词:

布局,集合视图,视图效果,UICollectionView

功能

行,列间距,边距皆 可自定义设置

使用

  1. 设置边距等相应参数

- (UICollectionView *)hotKeyCollectView{
    if (_hotKeyCollectView == nil) {
        UICollectionView *  collectionView = [[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:self.hkLayout];
        collectionView.backgroundColor = [UIColor whiteColor];
        collectionView.delegate=self;
        collectionView.dataSource =self;
        [self.view addSubview:collectionView];
        [collectionView registerClass:[ZZCollectionViewCell class] forCellWithReuseIdentifier:kCellID];
        _hotKeyCollectView = collectionView;
    }
    return _hotKeyCollectView;
}

- (ZZHotKeysLayout *)hkLayout{
    if (_hkLayout == nil) {
        _hkLayout = [[ZZHotKeysLayout alloc]init];
        _hkLayout.flowEdgeInset = UIEdgeInsetsMake(20, 10, 15, 40);
        _hkLayout.rowSpace = 30;
        _hkLayout.columSpace = 15;
        _hkLayout.delegate = self;
    }
    return _hkLayout;
}
  1. 实现相应代理方法

- (CGSize)hotKeysLayout:(ZZHotKeysLayout *)layout indexPath:(NSIndexPath*)indexPath;

Git源码地址: 源码传送门

如有问题或建议,欢迎批评指正:简书地址联系

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 热词,热词布局,UICollectionView,集合视图
分享到: 更多 (0)