12345678910111213141516171819202122232425262728293031 |
- //
- // LiveRoomViewController.h
- // OpenLive
- //
- // Created by GongYuhua on 2016/9/12.
- // Copyright © 2016年 Agora. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <AgoraRtcEngineKit/AgoraRtcEngineKit.h>
- @class LiveRoomViewController;
- @protocol LiveRoomVCDelegate <NSObject>
- - (void)liveVCNeedClose:(LiveRoomViewController *)liveVC;
- @end
- @interface LiveRoomViewController : UIViewController
- /*标题*/
- @property (copy, nonatomic) NSString *roomName;
- /*唯一id*/
- @property (assign,nonatomic) NSUInteger uid;
- /*角色*/
- @property (assign, nonatomic) AgoraRtcClientRole clientRole;
- /*视频描述*/
- @property (assign, nonatomic) AgoraRtcVideoProfile videoProfile;
- /*代理*/
- @property (weak, nonatomic) id<LiveRoomVCDelegate> delegate;
- @property(nonatomic,assign)BOOL reconnectionNextDay;
- @end
|