webRtcPlayerViewController+AdjustBtnFrame.h 521 B

12345678910111213141516171819202122232425
  1. //
  2. // webRtcPlayerViewController+AdjustBtnFrame.h
  3. //
  4. //
  5. // Created by David on 2024/9/5.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "webRtcPlayerViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface webRtcPlayerViewController (AdjustBtnFrame)
  11. {
  12. }
  13. @property NSInteger adjustTime;/**3s后 圆形浮标自动靠边隐藏*/
  14. - (void)extensionAdjustBtnFrameCheckAdjustTime;
  15. #pragma mark 悬浮标拖拽
  16. - (void)controlBtnPanGestureCallback:(UIPanGestureRecognizer *)panGesture;
  17. @end
  18. NS_ASSUME_NONNULL_END