iOS学习笔记iOS学习开发iOS开发

iOS应用跳转

2016-01-25  本文已影响452人  论丶道

在iOS开发中经常遇到需要分享的需求,分享功能的实现就涉及到应用中的跳转,今天就来简单介绍一下苹果自带的跳转功能实现.

NSURL *urlString = [NSURL URLWithString:@"B://"];
    if ([[UIApplication sharedApplication] canOpenURL:urlString]) {
        [[UIApplication sharedApplication] openURL:urlString];
    }
完成以上操作就可以从A应用跳转到B应用了
NSURL *urlString = [NSURL URLWithString:@"B://Other"];
    if ([[UIApplication sharedApplication] canOpenURL:urlString]) {
        [[UIApplication sharedApplication] openURL:urlString];
    }

注意:NSURL *urlString = [NSURL URLWithString:@"B://Other"];这行代码中需要在B://后面加上一个用来跟B://进行区分的字符串

-(BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString *,id> *)options
{
        ViewController *rootVc = (ViewController *)self.window.rootViewController;
        NSString *urlString = url.absoluteString;
        ZDHomeViewController *homeVc = [rootVc.childViewControllers firstObject];
        if ([urlString containsString:@"Other"]) {
            [homeVc.navigationController pushViewController:[[ZDOtherController alloc] init] animated:YES];
        }
        return YES;
}
完成以上操作就可以从A跳转到B中相应的界面了
`注意:NSURL *urlString = [NSURL URLWithString:@"B://Other"];中B://后面加的字符串并不会影响从A跳转到B`
NSURL *urlString = [NSURL URLWithString:@"B://Other?A"];
    if ([[UIApplication sharedApplication] canOpenURL:urlString]) {
        [[UIApplication sharedApplication] openURL:urlString];
    }

[NSURL URLWithString:@"B://Other?A"]传入的字符串最好给定一些格式 比如在后面接上?A以进行区分

NSString *urlSchemeString = [[self.urlString componentsSeparatedByString:@"?"] lastObject];
    NSString *urlString = [urlSchemeString stringByAppendingString:@"://"];
    NSURL *url = [NSURL URLWithString:urlString];
    if ([[UIApplication sharedApplication] canOpenURL:url]) {
        [[UIApplication sharedApplication] openURL:url];
    }
    }

注意:在B中如何获取A中所传入的urlString呢? 需要完成如下几步操作
1.在B中相应的控制器.h文件中搞一个属性保存
@property (nonatomic,copy)NSString *urlString;
2.在上述提到的AppDelegate所实现的方法中接受URLString
homeVc.urlString = urlString;
完成以上操作就可以从B回到A了
以上仅仅是简单介绍了一下系统自带的跳转功能实现 想要更好的完成需求还需要深入的学习与研究...

上一篇下一篇

猜你喜欢

热点阅读