123456789101112131415161718192021 |
- //
- // LDChildSuperBrand.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/11.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "LDSuperBrandModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface LDChildSuperBrand : UIView
- - (void)setSuperBrandData:(NSArray *)list;
- @property (nonatomic, copy) void (^selectedClick)(LDSuperBrandModel *model);
- @property (nonatomic, copy) void (^moreClick)(void);
- @end
- NS_ASSUME_NONNULL_END
|