GoodsExplainCell.h 724 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // GoodsExplainCell.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/3/28.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CommodityDetailModel.h"
  10. #import <WebKit/WebKit.h>
  11. @interface GoodsExplainCell : UITableViewCell<WKNavigationDelegate,UIScrollViewDelegate>
  12. {
  13. // UIScrollView *_backScroll;
  14. UILabel *content;
  15. MASViewAttribute *_topMas;
  16. CGFloat _spacess;
  17. CGFloat allHeight;
  18. NSString *htmlString;
  19. CGFloat imageFloat;
  20. }
  21. @property (nonatomic, strong)CommodityDetailModel *model;
  22. @property (nonatomic,strong) WKWebView *webView;
  23. @property (nonatomic,strong) NSMutableArray *imageArray;
  24. @property (nonatomic,strong)UIScrollView *backScroll;
  25. @end