From 16a29b0b8701697372ed40dfa4874d66edb6f77c Mon Sep 17 00:00:00 2001 From: Terry Yiu Date: Tue, 8 Dec 2015 14:30:07 -0800 Subject: [PATCH] Fix EmbeddedAppIOS documentation Fix with correct init call on RCTRootView due to change in method signature from commit 261f9434e54274a68d2cb50644c436197ef48baa --- docs/EmbeddedAppIOS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/EmbeddedAppIOS.md b/docs/EmbeddedAppIOS.md index 655809fa0..b82c608d1 100644 --- a/docs/EmbeddedAppIOS.md +++ b/docs/EmbeddedAppIOS.md @@ -136,6 +136,7 @@ NSURL *jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.b // curl http://localhost:8081/index.ios.bundle -o main.jsbundle RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation moduleName: @"SimpleApp" + initialProperties:nil launchOptions:nil]; ```