ZBFancyCollectionView 1.2.4

ZBFancyCollectionView 1.2.4

Maintained by xzb.



ZBFancyCollectionView

CI Status Version License Platform

Example

    self.collectionView = [UICollectionView fancyLayoutWithStyle:self.style];
    if (self.style == ZBFancyCollectionViewStyleCustom) {
        self.collectionView.fancyLayout.hoverIndexPath = [NSIndexPath indexPathForItem:0 inSection:0];
    }
    self.view.backgroundColor = self.collectionView.backgroundColor = [UIColor blackColor];
    [self.view addSubview:self.collectionView];
    [self.collectionView mas_makeConstraints:^(MASConstraintMaker *make) {
        if (@available(iOS 11.0, *)) {
            make.top.equalTo(self.view.mas_safeAreaLayoutGuideTop).offset(0);
            make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom).offset(0);
        } else {
            make.top.bottom.offset(0);
        }
        make.left.right.offset(0);
    }];
    __weak typeof(self) weakSelf = self;
    
    //register
    [self.collectionView zb_configTableView:^(ZBCollectionProtoFactory *config) {
        __strong typeof(weakSelf) strongSelf = weakSelf;
        [strongSelf makerConfig:config];
    }];
    //data
    [self.collectionView zb_setup:^(ZBCollectionMaker *maker) {
        __strong typeof(weakSelf) strongSelf = weakSelf;
        [strongSelf makerExample:maker];
    }];

Requirements

Installation

ZBFancyCollectionView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'ZBFancyCollectionView'

Author

[email protected], [email protected]

License

ZBFancyCollectionView is available under the MIT license. See the LICENSE file for more info.