YBLinkAlertView.h 601 B

123456789101112131415161718192021222324252627
  1. //
  2. // YBLinkAlertView.h
  3. // yunbaolive
  4. //
  5. // Created by Boom on 2018/10/29.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^linkAlertBlock)(BOOL isAgree,BOOL isHostLink);
  10. @interface YBLinkAlertView : UIView
  11. - (instancetype)initWithFrame:(CGRect)frame andUserMsg:(NSDictionary *)dic;
  12. @property (nonatomic,copy) linkAlertBlock linkAlertEvent;
  13. @property (nonatomic,copy) UILabel *timeL;
  14. @property(nonatomic,assign)BOOL isHostToHost; //是否 主播-主播连麦
  15. @property(nonatomic,strong,readonly)NSString *applyUid;
  16. - (void)show;
  17. @end