ShopMallClassView.h 550 B

12345678910111213141516171819202122232425
  1. //
  2. // ShopMallClassView.h
  3. // YBLive
  4. //
  5. // Created by ybRRR on 2020/8/19.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol mallClassDelegate <NSObject>
  10. -(void)selectClassData:(NSDictionary *)dic;
  11. @end
  12. @interface ShopMallClassView : UIView<UIScrollViewDelegate>
  13. {
  14. UIView *slideBackView;
  15. UIView *sliderView;
  16. UIScrollView *backScroll;
  17. NSArray *listArr;
  18. }
  19. @property (nonatomic, assign)id<mallClassDelegate>delegate;
  20. -(instancetype)initWithFrame:(CGRect)frame andData:(NSArray *)dataArr;
  21. @end