// // YOUPAILCRequestView.h // LiveChat // // Created by 张灿 on 2018/9/17. // Copyright © 2018年 caicai. All rights reserved. // #import #import "YOUPAILCVideoChatModel.h" @protocol LCResquestViewDelegate - (void)youpaifcloseRequestBtnClick;//未连接上的退出按钮 - (void)youpaifcancelBtnClick;//点击了取消按钮 //- (void)timeOver;//倒计时结束 @end @interface YOUPAILCRequestView : UIView - (instancetype)initWithModel:(YOUPAILCVideoChatModel*)callModel; @property(nonatomic,strong) YOUPAILCVideoChatModel* youpaipcallModel; @property(nonatomic,strong) dispatch_source_t youpaiptimer; @property(nonatomic,assign) id youpaipdelegate; @property(nonatomic,strong) UILabel* youpaiptimeLabel; @property(nonatomic,strong) UILabel* youpaiptipLabel; @property(nonatomic,strong) UIButton* youpaipcancelBtn; @property(nonatomic,strong) UIButton* youpaipcloseBtn; @property(nonatomic,strong) UIImageView* youpaipanchorTagImgV; @property (nonatomic, strong) UIVisualEffectView *effectView; //虚拟层 @property(nonatomic,strong) UIButton *cancelBtn; @property (nonatomic, strong) UILabel *cancelLab; - (void)youpaiftimePadding; @end