12345678910111213141516171819202122232425262728 |
- //
- // webRtcPlayerViewController.h
- // 双子星云手机
- //
- // Created by xd h on 2024/9/2.
- //
- #import "BaseViewController.h"
- #import <WebRTC/AMediaStream.h>
- #import <WebRTC/RTCMacros.h>
- #import "UIView+HWCategory.h"
- #import "webRtcMsgModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface webRtcPlayerViewController : BaseViewController
- {
- CGRect startFrame;//悬浮标拖拽用
- }
- @property (nonatomic, strong) AMediaStream *mediaStream;
- @property(nonatomic,strong)UIButton *controlBtn;
- @property (nonatomic,strong) webRtcMsgModel * webRtcMsgMod;
- @end
- NS_ASSUME_NONNULL_END
|