在iOS开发中经常遇到需要分享的需求,分享功能的实现就涉及到应用中的跳转,今天就来简单介绍一下苹果自带的跳转功能实现.
- 应用A跳转到应用B
-
首先需要在B应用中做出相应的配置
- 在info下找到URL Types中的URL Schemes给你的B应用绑定一个URL标识
- 然后再在应用A中实现如下代码
NSURL *urlString = [NSURL URLWithString:@"B://"];
if ([[UIApplication sharedApplication] canOpenURL:urlString]) {
[[UIApplication sharedApplication] openURL:urlString];
}
完成以上操作就可以从A应用跳转到B应用了
- 应用A跳转到应用B中的其他页面
- 在A中实现如下代码
NSURL *urlString = [NSURL URLWithString:@"B://Other"];
if ([[UIApplication sharedApplication] canOpenURL:urlString]) {
[[UIApplication sharedApplication] openURL:urlString];
}
注意:NSURL *urlString = [NSURL URLWithString:@"B://Other"];这行代码中需要在B://后面加上一个用来跟B://进行区分的字符串
- 然后再在B的AppDelegate中实现如下方法
-(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`
- 从应用B回到应用A
当我们从A跳转到B做完我们想要进行的操作后,需要再从B回到A 那么需要就进行以下的操作- 首先在A中的项目文件里面进行相应配置(操作见文章最上面的图片)
需要注意的是第三步中的URL标识需要进行改动 不能和B一样 URL标识就以A为例
- 首先在A中的项目文件里面进行相应配置(操作见文章最上面的图片)
- 还需要在A中注意一点 在
NSURL *urlString = [NSURL URLWithString:@"B://Other?A"];
if ([[UIApplication sharedApplication] canOpenURL:urlString]) {
[[UIApplication sharedApplication] openURL:urlString];
}
中[NSURL URLWithString:@"B://Other?A"]
传入的字符串最好给定一些格式 比如在后面接上?A
以进行区分
- 再在B中实现如下代码
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了
以上仅仅是简单介绍了一下系统自带的跳转功能实现 想要更好的完成需求还需要深入的学习与研究...