CocoaPods trunk is moving to be read-only. Read more on the blog, there are 17 months to go.

RXVCMediator 0.2

RXVCMediator 0.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Feb 2017

Maintained by Rush D Xzj.



使用方法:

- (void)showMain
{
    NSDictionary *query = @{@"param1":@"param1Value",
                            @"param2":@"param2Vale"};
    UIViewController *vc = [UIViewController rx_vcWithString:@"rxpage://MainViewController?a=1&b=2&c=3" query:query];
    UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc];
    self.window.rootViewController = nc;
}


- (IBAction)btnNextTouchUpInside:(id)sender {
    [RXVCMediator pushInNavigationController:self.navigationController withString:@"rxpage://FirstViewController" query:nil animate:YES];
}

http://www.cnblogs.com/xzjxylophone/p/4962517.html