12345678910111213141516171819202122232425262728293031 |
- //
- // YOUPAIBBVideoResponseView.h
- // VQU
- //
- // Created by Elaine on 2021/10/28.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCVideoChatModel.h"
- @protocol BBResponseViewDelegate <NSObject>
- - (void)youpaifcancelBtnClick;//点击了拒绝按钮
- - (void)youpaifconfirmBtnClick;//点击确认按钮
- @end
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIBBVideoResponseView : UIView
- - (instancetype)initWithModel:(YOUPAILCVideoChatModel*)callModel;
- @property(nonatomic,strong)YOUPAILCVideoChatModel* youpaipcallModel;
- @property(nonatomic,assign)id<BBResponseViewDelegate> delegate;
- @property(nonatomic,strong)UIButton* youpaipcancelBtn;
- @property(nonatomic,strong)UIButton* youpaipconfirmBtn;
- @property(nonatomic,strong)UIButton* youpaipbtn;
- @end
- NS_ASSUME_NONNULL_END
|