https://github.com/uxyheaven/XYRouter
XYRouter是一个通过url routing来解决UIViewController跳转依赖的类.
* 本类采用ARC
#import "XYRouter.h"
pod ‘XYRouter‘
#import "XYRouter.h"
可以通过key和NSString来映射一个UIViewController
[[XYRouter sharedInstance] mapKey:@"aaa" toControllerClassName:@"UIViewController"];
当取出ViewController的时候, 如果有单例[ViewController sharedInstance], 默认返回单例, 如果没有, 返回[[ViewController alloc] init].
UIViewController *vc = [[XYRouter sharedInstance] viewControllerForKey:@"aaa"];
如果不想每次都创建对象, 也可以直接映射一个实例
[[XYRouter sharedInstance] mapKey:@"bbb" toControllerInstance:[[UIViewController alloc] init]];
如果想更好的定制对象, 可以用block
[[XYRouter sharedInstance] mapKey:@"nvc_TableVC" toBlock:^UIViewController *{
TableViewController *vc = [[TableViewController alloc] init];
UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
return nvc;
}];
你可以使用key去push出一个viewController
[[XYRouter sharedInstance] openUrlString:@"aaa"];
path还支持相对路径, 如下面的代码可以在当前目录下push出一个TableVC后, 再push出TestVC1.
[[XYRouter sharedInstance] openUrlString:@"./TableVC/TestVC1"];
目前支持这些描述:
./
../
/
在跳转的时候还可以传递参数
@interface TestVC1 : UIViewController
@property (nonatomic, assign) NSInteger i;
@property (nonatomic, copy) NSString *str1;
@property (nonatomic, copy) NSString *str2;
@end
[[XYRouter sharedInstance] openUrlString:@"TestVC1?str1=a&str2=2&i=1"];
可以用scheme:window替换windows.rootViewController
// rootViewController : nvc_TableVC
[[XYRouter sharedInstance] openUrlString:@"window://nvc_TableVC/TestVC1"];
可以用scheme:modal来呈现一个模态视图
// rootViewController : nvc_TableVC
[[XYRouter sharedInstance] openUrlString:@"modal://nvc_TableVC/TestModalVC/"];
// rootViewController : TestModalVC
[[XYRouter sharedInstance] openUrlString:@"modal://TestModalVC/?str1=a&str2=2&i=1"];
关闭这个模态视图直接用dismiss
[[XYRouter sharedInstance] openUrlString:@"dismiss"];
版权声明:本文为博主原创文章,未经博主允许不得转载。
通过通过url routing解决UIViewController跳转依赖
原文地址:http://blog.csdn.net/uxyheaven/article/details/47751483