12345678910111213141516171819202122232425 |
- //
- // webRtcPlayerViewController+AdjustBtnFrame.h
- // 双子星云手机
- //
- // Created by xd h on 2024/9/5.
- //
- #import <Foundation/Foundation.h>
- #import "webRtcPlayerViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface webRtcPlayerViewController (AdjustBtnFrame)
- {
-
- }
- @property NSInteger adjustTime;/**3s后 圆形浮标自动靠边隐藏*/
- - (void)extensionAdjustBtnFrameCheckAdjustTime;
- #pragma mark 悬浮标拖拽
- - (void)controlBtnPanGestureCallback:(UIPanGestureRecognizer *)panGesture;
- @end
- NS_ASSUME_NONNULL_END
|