欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2022-05-01 17:38:25
ios开发中应用程序跳转到指定的页面实现方案,如果我们想要app A跳转到app B的某个指定的控制器,我们可以通过给跳转的URL Schemes中传入参数进行设置。因为之前就说了...

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];
}