Skip to content

Commit d00f8dd

Browse files
authored
Merge pull request #375 from askell/master
Fixed ios example
2 parents 34fae86 + 4f7955b commit d00f8dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/ios/examples/AppDelegate.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#import <React/RCTBundleURLProvider.h>
1111
#import <React/RCTRootView.h>
12-
#import "SplashScreen.h" // here
12+
#import "RNSplashScreen.h" // here
1313

1414
@implementation AppDelegate
1515

@@ -30,7 +30,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
3030
rootViewController.view = rootView;
3131
self.window.rootViewController = rootViewController;
3232
[self.window makeKeyAndVisible];
33-
[SplashScreen show]; // here
33+
[RNSplashScreen show]; // here
3434
return YES;}
3535

3636
@end

0 commit comments

Comments
 (0)