1234567891011121314151617181920212223242526272829303132333435 |
- //
- // YOUPAILCRequestView.h
- // LiveChat
- //
- // Created by 张灿 on 2018/9/17.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCVideoChatModel.h"
- @protocol LCResquestViewDelegate <NSObject>
- - (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<LCResquestViewDelegate> 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
|