123456789101112131415161718192021 |
- //
- // TDHorizontalWaterFlowLayout.h
- // TheoryNetwork
- //
- // Created by tederen on 2019/9/24.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface TDHorizontalWaterFlowLayout : UICollectionViewFlowLayout
- //数据数组
- @property (nonatomic, strong) NSArray *dataList;
- @end
- NS_ASSUME_NONNULL_END
|