ソースを参照

Error in AppDelegate.m since there was no return statement. (#1945)

Since the docs suggested we remove everything inside the `didFinishLaunchingWithOptions`, without the return statement there was an `Control reaches end of non-void function` error since the function expects a boolean return. After adding this, the error goes away.
Yogesh 7 年 前
コミット
aee6289969
共有1 個のファイルを変更した3 個の追加1 個の削除を含む
  1. 3
    1
      docs/docs/installation-ios.md

+ 3
- 1
docs/docs/installation-ios.md ファイルの表示

@@ -21,4 +21,6 @@ remove everything in the method didFinishLaunchingWithOptions and add:
21 21
 ```
22 22
 NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
23 23
 [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];
24
-```
24
+
25
+return YES;
26
+```