YOUPAIBBVideoRequestView.h 703 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YOUPAIBBVideoRequestView.h
  3. // VQU
  4. //
  5. // Created by Elaine on 2021/10/28.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCVideoChatModel.h"
  10. @protocol BBResquestViewDelegate <NSObject>
  11. - (void)youpaifcancelBtnClick;//点击了取消按钮
  12. @end
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface YOUPAIBBVideoRequestView : UIView
  15. - (instancetype)initWithModel:(YOUPAILCVideoChatModel*)callModel;
  16. @property(nonatomic,strong)YOUPAILCVideoChatModel* youpaipcallModel;
  17. @property(nonatomic,assign)id<BBResquestViewDelegate> delegate;
  18. @property(nonatomic,strong)UIButton* youpaipcancelBtn;
  19. @property(nonatomic,strong)UIButton* youpaipbtn;
  20. @end
  21. NS_ASSUME_NONNULL_END