Browse Source

fix: 主播主页

menghui 1 tháng trước cách đây
mục cha
commit
2766e9f0e9
1 tập tin đã thay đổi với 11 bổ sung4 xóa
  1. 11 4
      WQPlayBallLiveQiu/WQPlayBallLiveQiu/Classes/LiveModule.m

+ 11 - 4
WQPlayBallLiveQiu/WQPlayBallLiveQiu/Classes/LiveModule.m

@@ -81,12 +81,19 @@ UNI_EXPORT_METHOD_SYNC(@selector(sendCommand:))
     }
     if(options.cmd == 1002){
         // 主播主页
-        WQCMD1002 * data = [WQCMD1002 mj_objectWithKeyValues:options.data];
+        
+    
+        
 
-        PBUserHomePageViewController *vc = [PBUserHomePageViewController new];
-        vc.memberId = data.id;
-        [[PBSDK yt_topmostViewController].navigationController pushViewController:vc animated:YES];
         
+        dispatch_async(dispatch_get_main_queue(), ^(void) {
+            WQCMD1002 * data = [WQCMD1002 mj_objectWithKeyValues:options.data];
+            PBUserHomePageViewController *vc = [PBUserHomePageViewController new];
+            vc.memberId = data.id;
+            [[PBSDK dc_findCurrentShowingViewController].navigationController pushViewController:vc animated:YES];
+            
+        });
+       
         return;
     }