sliderCollectionView.h 532 B

12345678910111213141516171819202122232425
  1. //
  2. // sliderCollectionView.h
  3. // yunbaolive
  4. //
  5. // Created by IOS1 on 2019/3/23.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface sliderCollectionView : UIView<UIScrollViewDelegate>
  11. {
  12. UILabel *countLb;
  13. }
  14. - (void)reload:(NSArray *)array andIsvideo:(BOOL)video;
  15. @property (nonatomic,strong) UIImageView *videoImgView;
  16. @property (nonatomic,assign) int page;
  17. @property (nonatomic,strong)UIScrollView *backScroll;
  18. -(void)resumeGoodsVideo;
  19. @end
  20. NS_ASSUME_NONNULL_END