BogoPkAudienceView.h 972 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // BogoPkAudienceView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/5/22.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BogoPkProgressModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoPkAudienceView : UIView<UICollectionViewDelegate,UICollectionViewDataSource>
  12. @property(nonatomic, strong) UICollectionView *leftCollectionView;
  13. @property(nonatomic, strong) UICollectionView *rightCollectionView;
  14. @property(nonatomic, strong) UIImageView *pkImgView;
  15. @property(nonatomic, strong) UIImageView *leftBGImgView;
  16. @property(nonatomic, strong) UIImageView *rightBGImgView;
  17. @property(nonatomic, strong) UIImageView *leftWinImg;
  18. @property(nonatomic, strong) UIImageView *rightWinImg;
  19. @property(nonatomic, strong) NSMutableArray *leftArr;
  20. @property(nonatomic, strong) NSMutableArray *rightArr;
  21. @property(nonatomic, strong) BogoPkProgressModel *model;
  22. @property(nonatomic, copy) NSString *room_id;
  23. @end
  24. NS_ASSUME_NONNULL_END