webRtcPlayerViewController+AppDelegate.h 541 B

12345678910111213141516171819202122232425262728
  1. //
  2. // webRtcPlayerViewController+AppDelegate.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/9/18.
  6. //
  7. #import "webRtcPlayerViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface webRtcPlayerViewController (AppDelegate)
  10. #pragma mark 云机停止拉流
  11. - (void)pauseStream;
  12. #pragma mark 云机唤醒拉流
  13. - (void)resumeStream;
  14. #pragma mark 输入密码完成
  15. - (void)didInpuPwdOkFun;
  16. #pragma mark 旋转屏幕
  17. - (BOOL)player_rotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation;
  18. @end
  19. NS_ASSUME_NONNULL_END