| 12345678910111213141516171819202122232425 |
- //
- // sliderCollectionView.h
- // yunbaolive
- //
- // Created by IOS1 on 2019/3/23.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface sliderCollectionView : UIView<UIScrollViewDelegate>
- {
- UILabel *countLb;
- }
- - (void)reload:(NSArray *)array andIsvideo:(BOOL)video;
- @property (nonatomic,strong) UIImageView *videoImgView;
- @property (nonatomic,assign) int page;
- @property (nonatomic,strong)UIScrollView *backScroll;
- -(void)resumeGoodsVideo;
- @end
- NS_ASSUME_NONNULL_END
|