抓娃娃版1127

LiveRoomViewController.h 807B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // LiveRoomViewController.h
  3. // OpenLive
  4. //
  5. // Created by GongYuhua on 2016/9/12.
  6. // Copyright © 2016年 Agora. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <AgoraRtcEngineKit/AgoraRtcEngineKit.h>
  10. @class LiveRoomViewController;
  11. @protocol LiveRoomVCDelegate <NSObject>
  12. - (void)liveVCNeedClose:(LiveRoomViewController *)liveVC;
  13. @end
  14. @interface LiveRoomViewController : UIViewController
  15. /*标题*/
  16. @property (copy, nonatomic) NSString *roomName;
  17. /*唯一id*/
  18. @property (assign,nonatomic) NSUInteger uid;
  19. /*角色*/
  20. @property (assign, nonatomic) AgoraRtcClientRole clientRole;
  21. /*视频描述*/
  22. @property (assign, nonatomic) AgoraRtcVideoProfile videoProfile;
  23. /*代理*/
  24. @property (weak, nonatomic) id<LiveRoomVCDelegate> delegate;
  25. @property(nonatomic,assign)BOOL reconnectionNextDay;
  26. @end