12345678910111213141516171819202122232425 |
- //
- // LDTodayFlowLayout.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/13.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol TodayCollectionViewDelegateFlowLayout <UICollectionViewDelegateFlowLayout>
- - (UIColor *)todayCollectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout backgroundColorForSection:(NSInteger)section;
- @end
- NS_ASSUME_NONNULL_BEGIN
- @interface LDTodayFlowLayout : UICollectionViewFlowLayout
- @property (nonatomic, strong) NSMutableArray<UICollectionViewLayoutAttributes *> *decorationViewAttrs;
- @end
- NS_ASSUME_NONNULL_END
|