// // YOUPAILCResponseView.h // LiveChat // // Created by 张灿 on 2018/9/17. // Copyright © 2018年 caicai. All rights reserved. // #import #import "YOUPAILCVideoChatModel.h" #import @protocol LCResponseViewDelegate - (void)youpaifcolseResBtnClick;//未连接上的退出按钮 - (void)youpaifcancelBtnClick;//点击了拒绝按钮 - (void)youpaifconfirmBtnClick;//点击确认按钮 @end @interface YOUPAILCResponseView : 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* priceLabel; @property(nonatomic,strong)UILabel* youpaiptimeLabel; @property(nonatomic,strong)UILabel* youpaiptipLabel; @property(nonatomic,strong)UIButton* youpaipcancelBtn; @property(nonatomic,strong)UIButton* youpaipconfirmBtn; @property(nonatomic,strong)UIButton* youpaipcloseBtn; @property(nonatomic,strong)UIImageView* youpaipanchorTagImgV; @property (nonatomic, strong) UIVisualEffectView *effectView; //虚拟层 @property(nonatomic,strong) UIButton *cancelBtn; @property(nonatomic,strong) UIImageView *cancelImgv; @property (nonatomic, strong) UILabel *cancelLab; @property (nonatomic, strong) UIImageView *agreeImageView; @property (nonatomic, strong) SVGAPlayer *confimPlayer; //接听 @property (nonatomic, strong) UILabel *confimLab; - (void)youpaiftimePadding; @end