// // EqualSpaceFlowLayoutEvolve.h // QuanKeTong // // Created by alvin_y on 2019/9/11. // Copyright © 2019 yang-wang. All rights reserved. // #import typedef NS_ENUM(NSInteger,AlignType){ AlignWithLeft, AlignWithCenter, AlignWithRight }; NS_ASSUME_NONNULL_BEGIN @interface EqualSpaceFlowLayoutEvolve : UICollectionViewFlowLayout //两个Cell之间的距离 @property (nonatomic,assign)CGFloat betweenOfCell; //cell对齐方式 @property (nonatomic,assign)AlignType cellType; -(instancetype)initWthType : (AlignType)cellType; @end NS_ASSUME_NONNULL_END