| 12345678910111213141516171819202122232425262728 |
- //
- // YBLiveRoomAlertView.h
- // YBVideo
- //
- // Created by YB007 on 2022/3/3.
- // Copyright © 2022 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^LiveBanSel)(NSString *selId);
- @interface YBLiveRoomAlertView : UIView
- @property(nonatomic,copy)LiveBanSel banEvent;
- #pragma mark - 直播间警告
- +(YBLiveRoomAlertView *)showRoomWarning:(NSDictionary *)warningInfo;
- #pragma mark - 直播间封禁选项
- +(YBLiveRoomAlertView *)showBanOption:(NSArray *)banArray;
- @end
|