YOUPAIBBVideoResponseView.h 811 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YOUPAIBBVideoResponseView.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 BBResponseViewDelegate <NSObject>
  11. - (void)youpaifcancelBtnClick;//点击了拒绝按钮
  12. - (void)youpaifconfirmBtnClick;//点击确认按钮
  13. @end
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface YOUPAIBBVideoResponseView : UIView
  16. - (instancetype)initWithModel:(YOUPAILCVideoChatModel*)callModel;
  17. @property(nonatomic,strong)YOUPAILCVideoChatModel* youpaipcallModel;
  18. @property(nonatomic,assign)id<BBResponseViewDelegate> delegate;
  19. @property(nonatomic,strong)UIButton* youpaipcancelBtn;
  20. @property(nonatomic,strong)UIButton* youpaipconfirmBtn;
  21. @property(nonatomic,strong)UIButton* youpaipbtn;
  22. @end
  23. NS_ASSUME_NONNULL_END