《React Native之从 0 到 1 》—— 真机调试篇

  1. 手机和电脑连在同一个 wifi 环境(局域网)下,获取电脑的 IP 地址
    获取电脑 IP 地址
  2. localhost 修改为你电脑的 IP 地址
  • 方法一:将 jsLocation 设置为自己电脑的 IP 地址
NSURL *jsCodeLocation;
    [RCTBundleURLProvider sharedSettings].jsLocation = @"10.169.3.167";
    jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
    RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
                                                    moduleName:@"AObjectiveCAndRractNative"
                                                 initialProperties:nil
                                                     launchOptions:nil];
    rootView.frame = _vReactNative.bounds;
    [_vReactNative addSubview:rootView];
  • 方法二:将 RCTBundleURLProvider.m 文件中 - (NSString *)guessPackagerHost 方法中的 localhost 替换为你电脑的 IP 地址
NSString *host = ipGuess ?: @"10.169.3.167";
  1. 选择手机,直接 Run 即可

你可能感兴趣的:(《React Native之从 0 到 1 》—— 真机调试篇)