| 12345678910111213141516171819202122232425 |
- //
- // ShopMallClassView.h
- // YBLive
- //
- // Created by ybRRR on 2020/8/19.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol mallClassDelegate <NSObject>
- -(void)selectClassData:(NSDictionary *)dic;
- @end
- @interface ShopMallClassView : UIView<UIScrollViewDelegate>
- {
- UIView *slideBackView;
- UIView *sliderView;
- UIScrollView *backScroll;
-
- NSArray *listArr;
- }
- @property (nonatomic, assign)id<mallClassDelegate>delegate;
- -(instancetype)initWithFrame:(CGRect)frame andData:(NSArray *)dataArr;
- @end
|