YBLiveRoomAlertView.h 497 B

12345678910111213141516171819202122232425262728
  1. //
  2. // YBLiveRoomAlertView.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2022/3/3.
  6. // Copyright © 2022 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^LiveBanSel)(NSString *selId);
  10. @interface YBLiveRoomAlertView : UIView
  11. @property(nonatomic,copy)LiveBanSel banEvent;
  12. #pragma mark - 直播间警告
  13. +(YBLiveRoomAlertView *)showRoomWarning:(NSDictionary *)warningInfo;
  14. #pragma mark - 直播间封禁选项
  15. +(YBLiveRoomAlertView *)showBanOption:(NSArray *)banArray;
  16. @end