mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-13 23:09:04 +08:00
Summary: Files were moved to the js/ directory so UIExplorer did not work anymore on iOS, this fixes the path. Closes https://github.com/facebook/react-native/pull/8841 Differential Revision: D3576752 fbshipit-source-id: 921ddc2e158ee0c74dcf691a32504900c5d79e1d
80 lines
2.8 KiB
Objective-C
80 lines
2.8 KiB
Objective-C
/**
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
* evaluation purposes only.
|
|
*
|
|
* Facebook reserves all rights not expressly granted.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
#import "RCTBridge.h"
|
|
#import "RCTBundleURLProvider.h"
|
|
#import "RCTJavaScriptLoader.h"
|
|
#import "RCTLinkingManager.h"
|
|
#import "RCTRootView.h"
|
|
|
|
@interface AppDelegate() <RCTBridgeDelegate>
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(__unused UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
_bridge = [[RCTBridge alloc] initWithDelegate:self
|
|
launchOptions:launchOptions];
|
|
|
|
// Appetizer.io params check
|
|
NSDictionary *initProps = nil;
|
|
NSString *_routeUri = [[NSUserDefaults standardUserDefaults] stringForKey:@"route"];
|
|
if (_routeUri) {
|
|
initProps = @{@"exampleFromAppetizeParams": [NSString stringWithFormat:@"rnuiexplorer://example/%@Example", _routeUri]};
|
|
}
|
|
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:_bridge
|
|
moduleName:@"UIExplorerApp"
|
|
initialProperties:initProps];
|
|
|
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
UIViewController *rootViewController = [UIViewController new];
|
|
rootViewController.view = rootView;
|
|
self.window.rootViewController = rootViewController;
|
|
[self.window makeKeyAndVisible];
|
|
return YES;
|
|
}
|
|
|
|
- (NSURL *)sourceURLForBridge:(__unused RCTBridge *)bridge
|
|
{
|
|
NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"Examples/UIExplorer/js/UIExplorerApp.ios" fallbackResource:nil];
|
|
|
|
if (!getenv("CI_USE_PACKAGER")) {
|
|
jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
}
|
|
|
|
return jsCodeLocation;
|
|
}
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
|
|
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
|
|
{
|
|
return [RCTLinkingManager application:application openURL:url
|
|
sourceApplication:sourceApplication annotation:annotation];
|
|
}
|
|
|
|
- (void)loadSourceForBridge:(RCTBridge *)bridge
|
|
withBlock:(RCTSourceLoadBlock)loadCallback
|
|
{
|
|
[RCTJavaScriptLoader loadBundleAtURL:[self sourceURLForBridge:bridge]
|
|
onComplete:loadCallback];
|
|
}
|
|
|
|
@end
|