ios-应用程序跳转到指定的页面

来源:互联网 发布:ohem算法 编辑:程序博客网 时间:2024/05/18 01:28

如果我们想要app A跳转到app B的某个指定的控制器,我们可以通过给跳转的URL Schemes中传入参数进行设置。因为之前就说了其实URL Schemes和URL很像,前面是协议头后面是路径。

关于应用程序跳转以及 URL Schemes的解释可以看我的另外一篇文章http://blog.csdn.net/zcmuczx/article/details/78352783

我们如果想让A跳到B的指定的控制器,我们需要在B的AppDelegate.m文件中重写一个方法

-(BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options{    NSString * str = url.absoluteString;    //取出根视图控制器    UINavigationController * nav =(UINavigationController *) (self.window.rootViewController);        //获取主控制器    UIViewController * mainvc = nav.childViewControllers[0];        //回到主控制器    [nav popToRootViewControllerAnimated:YES];        //判断url是否包含session    if([str containsString:@"session"])    {        [mainvc performSegueWithIdentifier:@"session" sender:nil];    }    if([str containsString:@"friend"])    {        [mainvc performSegueWithIdentifier:@"friend" sender:nil];    }    return YES;}
然后在A中创建相应的按钮进行跳转

- (IBAction)sessionClick:(id)sender {       [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"weixin://session"] options:nil completionHandler:nil];}- (IBAction)friendClick:(id)sender {         [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"weixin://friend"] options:nil completionHandler:nil];}






原创粉丝点击