Преглед на файлове

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