@@ -95,48 +95,48 @@ the responder system.
9595
9696# FAQ
9797
98- Q. How does debugging work? Can I set breakpoints in my JS?
98+ Q. How does debugging work? Can I set breakpoints in my JS?
9999A. We are going to add the ability to use the Chrome developer tools soon. We
100100are very passionate about building the best possible developer experience.
101101
102- Q. When is this coming to Android/Windows/OS X/etc?
102+ Q. When is this coming to Android/Windows/OS X/etc?
103103A. We're working on Android, and we are excited to release it as soon as we can.
104104We are looking forward to the community helping us target other platforms as
105105well :)
106106
107- Q. How do I create my own app?
107+ Q. How do I create my own app?
108108A. Copy the entire ` Examples/TicTacToe ` folder, rename stuff in Xcode, and
109109replace the ` TicTacToeApp.js ` with your own. Then, in ` AppDelegate.m ` , update
110110` moduleName ` to match your call to
111111` Bundler.registerComponent(<moduleName>, <componentName>) ` at the bottom of your
112112JS file, and update ` jsCodeLocation ` to match your JS file name and location.
113113
114- Q. Can I submit my own React Native app to the App Store?
114+ Q. Can I submit my own React Native app to the App Store?
115115A. Not yet, but you will be able to soon. If you build something you want to
116116submit to the App Store, come talk to us ASAP.
117117
118- Q. How do I deploy to my device?
118+ Q. How do I deploy to my device?
119119A. You can change ` localhost ` in ` AppDelegate.m ` to your laptop's IP address and
120120grab the bundle over the same Wi-Fi network. You can also download the bundle
121121that the React packager generates, save it to the file ` main.jsbundle ` , and add it
122122as a static resource in your Xcode project. Then set the ` jsCodeLocation ` in
123123` AppDelegate.m ` to point to that file and deploy to your device like you would
124124any other app.
125125
126- Q. What's up with this private repo? Why aren't you just open sourcing it now?
126+ Q. What's up with this private repo? Why aren't you just open sourcing it now?
127127A. We want input from the React community before we open the floodgates so we
128128can incorporate your feedback, and we also have a bunch more features we want to
129129add to make a more complete offering before we open source.
130130
131- Q. Do you have to ship a JS runtime with your apps?
131+ Q. Do you have to ship a JS runtime with your apps?
132132A. No, we just use the JavaScriptCore public API that is part of iOS 7 and
133133later.
134134
135- Q. How do I add more native capabilities?
135+ Q. How do I add more native capabilities?
136136A. React Native is designed to be extensible - come talk to us, we would love to
137137work with you.
138138
139- Q. Can I reuse existing iOS code?
139+ Q. Can I reuse existing iOS code?
140140A. Yes, React Native is designed to be extensible and allow integration of all
141141sorts of native components, such as ` UINavigationController ` (available as
142142` <NavigatorIOS> ` ), ` MKMapView ` (not available yet), or your own custom
0 commit comments