1234567891011121314151617181920 |
- //
- // LDTodayGroupCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/13.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface LDTodayGroupCell : UICollectionViewCell
- - (void)setGoodData:(NSArray *)data;
- @property (nonatomic, strong) UIImageView *bgImgView;
- @property (nonatomic, copy) void(^moreClick)(void);
- @end
- NS_ASSUME_NONNULL_END
|