12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // YOUPAILCResponseView.h
- // LiveChat
- //
- // Created by 张灿 on 2018/9/17.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCVideoChatModel.h"
- #import <SVGAPlayer/SVGA.h>
- @protocol LCResponseViewDelegate <NSObject>
- - (void)youpaifcolseResBtnClick;//未连接上的退出按钮
- - (void)youpaifcancelBtnClick;//点击了拒绝按钮
- - (void)youpaifconfirmBtnClick;//点击确认按钮
- @end
- @interface YOUPAILCResponseView : UIView <SVGAPlayerDelegate>
- - (instancetype)initWithModel:(YOUPAILCVideoChatModel*)callModel;
- @property(nonatomic,strong)YOUPAILCVideoChatModel* youpaipcallModel;
- @property(nonatomic,strong)dispatch_source_t youpaiptimer;
- @property(nonatomic,assign)id<LCResponseViewDelegate> 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
|