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