当前位置: 移动技术网 > IT编程>移动开发>IOS > ios开发中应用程序跳转到指定的页面实现方案

ios开发中应用程序跳转到指定的页面实现方案

2018年03月10日  | 移动技术网IT编程  | 我要评论

美国凯撒大学,广州市汽车客运站,亚豪平台

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

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

-(BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary *)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];
}

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网