应用间的相互跳转

打开其他应用,需要给被打开应用设置schemes:自定义的协议头。

设置协议头

跳转的代码如下:

- (IBAction)skipToWechat {
    [self openURLWithString:@"mywechat://"];
}

- (IBAction)skipToTimeline {
    [self openURLWithString:@"mywechat://timeline?news"];
}

- (IBAction)skipToSession {
    [self openURLWithString:@"mywechat://session?news"];
}

- (void)openURLWithString:(NSString *)urlString
{
    // 1.获取到对应应用程序的URL
    NSURL *wechatURL = [NSURL URLWithString:urlString];

    // 2.判断手机中是否安装了对应的应用程序
    if ([[UIApplication sharedApplication] canOpenURL:wechatURL]) {

        // 3.打开应用程序
        [[UIApplication sharedApplication] openURL:wechatURL];
    }
}

注:@”@”mywechat://timeline?news”中的?前边的mywechat://timeline是要跳转到协议头为myweichat的应用中的timeline页面,后边的news是当前应用的协议头。

跳转后,到目的应用中的AppDelegate类中获取协议,并且半段跳转到什么页面,代码如下:

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
    // self.url = url.absoluteString;

    // 1.将URL转成字符串
    NSString *urlString = url.absoluteString;

    // 获取到主页控制器
    UINavigationController *rootNav = (UINavigationController *)self.window.rootViewController;
    [rootNav popToRootViewControllerAnimated:NO];
    ViewController *homeVc = [rootNav.childViewControllers firstObject];
    homeVc.urlString = urlString;

    // 2.判断是通过朋友圈还是微信好友跳转过来
    if ([urlString containsString:@"timeline"]) {
        [homeVc performSegueWithIdentifier:@"homeToTimeline" sender:nil];
    } else if ([urlString containsString:@"session"]){
        [homeVc performSegueWithIdentifier:@"homeToSession" sender:nil];
    }

    return YES;
}

从目的应用,跳回到原应用,就用到了收到的协议?后的参数,需要注意的是拼接完整协议头,代码如下:

- (IBAction)backToApp {

    // 0.拿到对应应用程序的urlScheme(wechat://session?news)
    /*
    NSRange range = [self.urlString rangeOfString:@"?"];
    range.location;
    self.urlString substringFromIndex:range.location
     */
    NSString *urlSchemeString = [[self.urlString componentsSeparatedByString:@"?"] lastObject];
    NSString *urlString = [urlSchemeString stringByAppendingString:@"://"];

    // 1.获取对应应用程序的URL
    NSURL *url = [NSURL URLWithString:urlString];

    // 2.判断是否可以打开
    if ([[UIApplication sharedApplication] canOpenURL:url]) {
        [[UIApplication sharedApplication] openURL:url];
    }
}

转载请注明出处,万分感谢!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值