BGTLiveScrollView.h 589 B

12345678910111213141516171819202122232425262728
  1. //
  2. // BGTLiveScrollView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/6/29.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BGTLiveScrollView : UIScrollView
  11. @property(nonatomic, strong) UIImageView *firstImgView;
  12. @property(nonatomic, strong) UIImageView *secondImgView;
  13. @property(nonatomic, strong) UIImageView *lastImgView;
  14. @property(nonatomic, assign) NSString *roomID;
  15. //向上向下
  16. @property(nonatomic, assign) BOOL isFromeTop;
  17. @property(nonatomic, assign) NSInteger nowIndex;
  18. @end
  19. NS_ASSUME_NONNULL_END