BGRoomSetChannelCell.h 622 B

1234567891011121314151617181920212223242526
  1. //
  2. // BGRoomSetChannelCell.h
  3. // UniversalApp
  4. //
  5. // Created by bugu on 2020/3/23.
  6. // Copyright © 2020 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HallTypeModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BGRoomSetChannelCell : UITableViewCell
  12. @property(nonatomic, strong) NSArray *channelDataArray;
  13. @property(nonatomic, strong) UICollectionView *collectionView;
  14. @property(nonatomic, copy) void (^selectedChannel)(VideoClassifiedModel * model);
  15. @property(nonatomic, strong) NSString *voice_type;
  16. //半透明背景
  17. @property(nonatomic, strong) UIImageView *bgImageView;
  18. @end
  19. NS_ASSUME_NONNULL_END