IOS详细瀑布流

时间:2021-03-22 03:39:52
【文件属性】:
文件名称:IOS详细瀑布流
文件大小:193KB
文件格式:RAR
更新时间:2021-03-22 03:39:52
IOS,瀑布流 /** 默认的列数 */ static const NSInteger XMGDefaultColumnCount = 3; /** 每一列之间的间距 */ static const CGFloat XMGDefaultColumnMargin = 10; /** 每一行之间的间距 */ static const CGFloat XMGDefaultRowMargin = 10; /** 边缘间距 */ static const UIEdgeInsets XMGDefaultEdgeInsets = {10, 10, 10, 10}; @interface XMGWaterflowLayout() /** 存放所有cell的布局属性 */ @property (nonatomic, strong) NSMutableArray *attrsArray; /** 存放所有列的当前高度 */ @property (nonatomic, strong) NSMutableArray *columnHeights; /** 内容的高度 */ @property (nonatomic, assign) CGFloat contentHeight;

网友评论