在启动崩溃的应用程序上React Native代码

时间:2017-11-22 07:44:36

标签: ios objective-c iphone reactjs react-native

崩溃时我收到的信息低于。

  

RCTTVNavigationEventEmitter需要主队列设置,因为它会覆盖   init但未实施requiresMainQueueSetup。在将来的版本中   React Native将默认初始化a上的所有本机模块   后台线程,除非明确选择退出。

代码:

NSString *bearerToken = REQUESTS.oAuthRequest.accessToken;
NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"home.ios" fallbackResource:nil];

RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:jsCodeLocation moduleProvider:nil launchOptions:nil];
NSDictionary *props = @{@"bearer_token" : bearerToken, @"area_id":SELECTED_AREA_ID};
rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"Order" initialProperties:props];
rootView.frame = CGRectMake(0, 64, SCREEN_WIDTH, SCREEN_HEIGHT - 112);
[self.view addSubview:rootView];

1 个答案:

答案 0 :(得分:1)

我在道具中找到了一个零,因为我收到了这个错误。

NSDictionary *props = @{@"bearer_token" : bearerToken ? bearerToken : @"bearer_token", @"area_id":SELECTED_AREA_ID};