react-native中‘RCTLog.h’ file not found处理

'RCTLog.h' file not found

处理方式:

Select "PTclient.xcodeproj", Project "PTclient", Build Settings, then find "Search Paths", "Header Search Paths", change this line:

$(SRCROOT)/../../../react-native/React

to:

$(SRCROOT)/../react-native/React

注意:此处  $(SRCROOT)  会映射到ios目录后面加   ../  表示父级目录。

你可能感兴趣的:(react-native中‘RCTLog.h’ file not found处理)