Sfoglia il codice sorgente

Update Installing.md (#5289)

Update Installing.md

Add step 2b that references Header Search Paths that were seen in this GitHub issue:
https://github.com/wix/react-native-navigation/issues/1933
Ethan Richards 5 anni fa
parent
commit
fa1a20eda5
1 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. 9
    0
      docs/docs/Installing.md

+ 9
- 0
docs/docs/Installing.md Vedi File

@@ -15,6 +15,15 @@
15 15
 
16 16
 2. In Xcode, in Project Navigator (left pane), click on your project (top), then click on your *target* row (on the "project and targets list", which is on the left column of the right pane) and select the `Build Phases` tab (right pane). In the `Link Binary With Libraries` section add `libReactNativeNavigation.a` ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-2)).
17 17
 
18
+2b. If you're seeing an error message in Xcode such as:
19
+```
20
+'ReactNativeNavigation/ReactNativeNavigation.h' file not found.
21
+```
22
+You may also need to add a Header Search Path: ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-3)).
23
+```objectivec
24
+$(SRCROOT)/../node_modules/react-native-navigation/lib/ios
25
+```
26
+
18 27
 3. In Xcode, you will need to edit this file: `AppDelegate.m`. This function is the main entry point for your app:
19 28
 
20 29
 	```objectivec