12345678910111213141516171819 |
- //
- // KBTodayModelView2.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/9/4.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface KBTodayModelView2 : UIView
- - (void)setGoodData:(NSArray *)data;
- - (instancetype)initWithFrame:(CGRect)frame titleNumOfLine:(NSInteger)num;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *Id;
- @property (nonatomic, assign) BOOL isOhterPage;//是否是other分类
- @end
|