MGLiveWishView.h 934 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // MGLiveWishView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/12/5.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MGLiveWishCell.h"
  10. #import "MGLiveWishModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface MGLiveWishView : UIView<UITableViewDelegate,UITableViewDataSource,MGLiveWishCellDelegate>
  13. @property(nonatomic, strong) UILabel *titleL;
  14. @property(nonatomic, strong) UIButton *wishBtn;
  15. @property(nonatomic, strong) UITableView *tableView;
  16. @property(nonatomic, strong) UIView *shadowView;
  17. @property(nonatomic, strong) NSMutableArray *listArr;
  18. @property(nonatomic, strong) NSMutableArray *listDeleteArr;
  19. @property(nonatomic, copy) void (^clickLiveWishBlock)(MGADD_WISH wishType);
  20. //隐藏心愿view
  21. @property(nonatomic, copy) void (^clickHideLiveWishBlock)();
  22. - (void)show:(UIView *)superView;
  23. - (void)hide;
  24. @property (nonatomic,strong) NSString *roomId;
  25. @end
  26. NS_ASSUME_NONNULL_END