MGShowVIPListView.h 843 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // MGShowVIPListView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/12/19.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. //贵族列表弹窗
  9. #import <UIKit/UIKit.h>
  10. #import "MGShowVIPCell.h"
  11. #import "MGShowVipModel.h"
  12. #import "BogoShowNobleCell.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface MGShowVIPListView : UIView<UITableViewDelegate,UITableViewDataSource>
  15. @property(nonatomic, strong) UILabel *titleL;
  16. @property(nonatomic, strong) UIButton *wishBtn;
  17. @property(nonatomic, strong) UITableView *tableView;
  18. @property(nonatomic, strong) UIView *shadowView;
  19. @property(nonatomic, strong) NSMutableArray *listArr;
  20. @property(nonatomic, strong) NSString *roomID;
  21. @property(nonatomic, copy) void (^clickHideLiveWishBlock)();
  22. - (void)show:(UIView *)superView withRoomID:(NSString *)roomID;
  23. - (void)hide;
  24. @end
  25. NS_ASSUME_NONNULL_END