RoomMicUserListView.h 1006 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // RoomMicUserListView.h
  3. // UniversalApp
  4. //
  5. // Created by bogokj on 2019/8/8.
  6. // Copyright © 2019 voidcat. All rights reserved.
  7. //
  8. @class RoomMicUserListView;
  9. @class RoomMicManageCell;
  10. @class RoomModel;
  11. #import "BGRoomMicManageCell.h"
  12. #import "VoiceHTTPManger.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @protocol RoomMicUserListViewDelegate <NSObject>
  15. - (void)userListView:(RoomMicUserListView *)userListView manageCell:(BGRoomMicManageCell *)messageCell didClickManageBtn:(UIButton *)sender;
  16. @end
  17. @interface RoomMicUserListView : UIView
  18. @property(nonatomic, weak) id<RoomMicUserListViewDelegate>delegate;
  19. @property(nonatomic, strong) NSMutableArray *dataArray;
  20. @property(nonatomic, strong) NSMutableArray *dataArray2;
  21. @property(nonatomic, strong) RoomModel *model;
  22. @property(nonatomic, assign) RoomMicManageCellType type;
  23. @property(nonatomic, strong) UIViewController *vc;
  24. - (void)show:(UIView *)superView;
  25. - (void)hide;
  26. @property(nonatomic, strong) VoiceHTTPManger *voiceApi;
  27. @end
  28. NS_ASSUME_NONNULL_END