Sfoglia il codice sorgente

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 anni fa
parent
commit
aee6289969
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 3
    1
      docs/docs/installation-ios.md

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

21
 ```
21
 ```
22
 NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
22
 NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
23
 [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];
23
 [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];
24
-```
24
+
25
+return YES;
26
+```