mirror of
https://github.com/wu736139669/ASHReactNative.git
synced 2026-08-05 05:54:53 +00:00
21 lines
649 B
Objective-C
21 lines
649 B
Objective-C
//
|
|
// 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
|