Browse Source

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 6 years ago
parent
commit
aee6289969
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      docs/docs/installation-ios.md

+ 3
- 1
docs/docs/installation-ios.md View File

@@ -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
+```