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

本文介绍了如何通过URLSchemes实现iOS应用间的跳转,并详细展示了如何从一个应用跳转到另一个应用的具体控制器。通过在AppDelegate中重写方法并根据传入的URL参数来触发特定的segue,从而实现精准跳转。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

关于应用程序跳转以及 URL Schemes的解释可以看我的另外一篇文章http://blog.youkuaiyun.com/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];
}






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值