BBAPanelGridViewLayout.h
628 Bytes
//
// BBAPanelGridViewLayout.h
// BBAUIKit
//
// Created by Guo,Zhaozhuo on 2020/3/19.
// Copyright © 2020 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "BBAPanelCommon.h"
extern const CGFloat kBBAPanelGridViewRowMargin;
@interface BBAPanelGridViewLayout : UICollectionViewLayout
@property (nonatomic, assign) NSInteger maxNumberOfRow;
@property (nonatomic, assign) NSInteger numberOfSection;
@property (nonatomic, assign) UIEdgeInsets gridInsets;
@property (nonatomic, assign) NSUInteger pageSize;
@property (nonatomic, assign) CGFloat lineSpace;
@property (nonatomic, assign) CGSize itemSize;
@end