Commit 3455844c by suolong

修改下mainviewcontroller的结构 对齐firefly

parent 187f7b27
...@@ -115,6 +115,10 @@ ...@@ -115,6 +115,10 @@
#define ROOM_CID_LIVE_ALERT 10090 // 接收到直播弹窗通知 #define ROOM_CID_LIVE_ALERT 10090 // 接收到直播弹窗通知
#define ROOM_CID_WEBVIEW_PUSH 10092 // 推送webview弹窗 #define ROOM_CID_WEBVIEW_PUSH 10092 // 推送webview弹窗
// 主播打开关闭麦克风socket
#define ROOM_CID_anchorDidCloseBeauty 20200
// 主播打开关闭麦克风socket
#define ROOM_CID_anchorDidCloseMic 20201
// 更新本场直播主题内容socket // 更新本场直播主题内容socket
#define ROOM_CID_LiveThemeDidChanged 20202 #define ROOM_CID_LiveThemeDidChanged 20202
...@@ -126,5 +130,3 @@ ...@@ -126,5 +130,3 @@
...@@ -350,6 +350,8 @@ typedef NS_ENUM(NSInteger, FUSFunctionMode) { ...@@ -350,6 +350,8 @@ typedef NS_ENUM(NSInteger, FUSFunctionMode) {
/// 清除所有半屏弹窗 /// 清除所有半屏弹窗
-(void)fus_clearHalfWebView; -(void)fus_clearHalfWebView;
/// 通知functionview推流成功(也就是主播开播成功),用于引导,改变一些状态
- (void)fus_LivePushSuccess;
-(void)fus_reloadAllUserFromRequest; -(void)fus_reloadAllUserFromRequest;
......
...@@ -5286,7 +5286,11 @@ BDAlphaPlayerMetalViewDelegate ...@@ -5286,7 +5286,11 @@ BDAlphaPlayerMetalViewDelegate
_enterRoomInterval += 1; _enterRoomInterval += 1;
} }
/// 通知functionview推流成功(也就是主播开播成功),用于引导,改变一些状态
- (void)fus_LivePushSuccess
{
}
/** /**
送礼提示展示逻辑 送礼提示展示逻辑
......
...@@ -13,6 +13,8 @@ typedef void(^PushSuccess)(void); ...@@ -13,6 +13,8 @@ typedef void(^PushSuccess)(void);
@interface FUSLivePushPrepareView : UIView @interface FUSLivePushPrepareView : UIView
@property (nonatomic, copy) PushSuccess pushSuccessBlock; @property (nonatomic, copy) PushSuccess pushSuccessBlock;
// OBS 开播成功回调
@property (nonatomic, copy) PushSuccess obsPushSuccessHandler;
- (void)fus_checkDeviceAuths; - (void)fus_checkDeviceAuths;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment