Ios 未找到React native SplashScreen.h文件

Ios 未找到React native SplashScreen.h文件,ios,react-native,Ios,React Native,您好,我对react原生技术还不熟悉,我正在尝试使用以下链接中的步骤为iOS创建闪屏 我得到了这个错误作为附加图像 请提供任何建议。react native splash screen lib readme.md中的未更新。因此,您需要更改的是AppDelegate.m&RNSplashScreen.m文件。请参阅下面的代码 #import "SplashScreen.h" //replace this with #import "RNSplashScreen.h" [SplashScreen

您好,我对react原生技术还不熟悉,我正在尝试使用以下链接中的步骤为iOS创建闪屏

我得到了这个错误作为附加图像


请提供任何建议。

react native splash screen lib readme.md中的未更新。因此,您需要更改的是AppDelegate.m&RNSplashScreen.m文件。请参阅下面的代码

#import "SplashScreen.h" //replace this with #import "RNSplashScreen.h"
[SplashScreen show]; //replace this with [RNSplashScreen show];
在屏幕上

//Replace this with below code
RCT_EXPORT_METHOD(show) {   
    [SplashScreen show];
}

//Add this in place of above code.
RCT_EXPORT_METHOD(show) {
[RNSplashScreen show];
}

//Add below path to search path.
//To fix 'RNSplashScreen.h' file not found, you have to select your project → //Build Settings → Search Paths → Header Search Paths to add:

$(SRCROOT)/../node_modules/react-native-splash-screen/ios

快乐编码:

我在下面的链接中遵循了这些步骤,但同样的错误请参见编辑。