This commit is contained in:
wushenghua
2017-04-10 17:56:27 +08:00
parent ab87ffadbe
commit 9159b73d76
914 changed files with 146352 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
//
// ASHRNViewFactoryImpl.m
// ASHReactNative
//
// Created by xmfish on 17/4/7.
// Copyright © 2017年 ash. All rights reserved.
//
#import "ASHRNViewFactoryImpl.h"
#import "ASHRNViewController.h"
@implementation ASHRNViewFactoryImpl
- (UIViewController*)rnViewControllerWithBundleURL:(NSString *)bundleURL modelName:(NSString *)modelName
{
return [[ASHRNViewController alloc] initWithBundleURL:bundleURL modelName:modelName];
}
- (UIViewController*)rnViewControllerWithBundleName:(NSString *)bundleName modelName:(NSString *)modelName
{
return [[ASHRNViewController alloc] initWithBundleName:bundleName modelName:modelName];
}
@end