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