1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // KSLiveStreamVideo.h
- // LiveStreamDemo
- //
- // Created by Kyle on 2021/10/21.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import <RongRTCLib/RongRTCLib.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KSLiveStreamVideo : NSObject
- @property (nonatomic, strong) NSString *userId;
- @property(nonatomic, copy) NSString *streamId;
- /*!
- 包含子类的 RCRTCLocalVideoView 和 RCRTCRemoteVideoView
- */
- @property(nonatomic, strong) RCRTCVideoView *canvesView;
- /*!
- RCRTCRemoteVideoView 初始化
- @param streamId 音视频流 Id
- */
- - (instancetype)initWithStreamId:(NSString *)streamId;
- /*!
- 本地 RCRTCLocalVideoView 初始化
- */
- + (instancetype)LocalStreamVideo;
- @end
- NS_ASSUME_NONNULL_END
|