| 1234567891011121314151617181920212223242526272829 |
- //
- // WebRTCPlayerView.h
- // sources
- //
- // Created by huangchunquan on 2025/3/20.
- //
- #import <UIKit/UIKit.h>
- #import <WebRTC/RTCMTLVideoView.h>
- NS_ASSUME_NONNULL_BEGIN
- RTC_OBJC_EXPORT
- @protocol WebRTCPlayerViewDelegate <NSObject>
- - (void)WebRTCPlayerViewTouchBack:(NSData*) touchesdata;
- @end
- RTC_OBJC_EXPORT
- @interface WebRTCPlayerView : UIView
- @property(nonatomic,readonly) __kindof UIView<RTC_OBJC_TYPE(RTCVideoRenderer)> *remoteVideoView;
- @property(nonatomic,assign) UIViewContentMode videoContentMode;
- @property(nonatomic,weak) id<WebRTCPlayerViewDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|