FWCollectionViewController
@protocol FWCollectionViewController <
FWViewController, UICollectionViewDataSource, UICollectionViewDelegate>
集合视图控制器协议,可覆写
-
集合视图,默认不显示滚动条
Declaration
Objective-C
@optional @property (nonatomic, readonly) NS_SWIFT_UNAVAILABLE("") UICollectionView *collectionView; -
集合数据,默认空数组,延迟加载
Declaration
Objective-C
@optional @property (nonatomic, readonly) NS_SWIFT_UNAVAILABLE("") NSMutableArray *collectionData; -
渲染集合视图内容布局,只调用一次
Declaration
Objective-C
- (nonnull UICollectionViewLayout *)renderCollectionViewLayout; -
渲染集合视图,renderView之前调用,默认未实现
Declaration
Objective-C
- (void)renderCollectionView; -
渲染集合视图布局,renderView之前调用,默认铺满
Declaration
Objective-C
- (void)renderCollectionLayout;
FWCollectionViewController Protocol Reference