ios实用开发技巧

iOS 应用跳转、参数传递

2018-09-11  本文已影响487人  跃文

1. 跳转AppStore

1.0跳转到搜索界面
NSString*str = [NSString stringWithFormat:@"https://itunes.apple.com/WebObjects/MZStore.woa/wa/search?mt=8&submit=edit&term=%@#software",[@"关键字" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding] ];
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:str]];
1.1跳转到应用官方下载页
//1.cn代表中国。在Safari浏览器打开链接是中文介绍
 NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/cn/app/id%@", APPID];
        
 //2.us代表美国。在Safari浏览器打开链接是英文介绍
 NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/us/app/id%@", APPID];
        
 //3.和1跳转相同
 NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/cn/app/apple-store/id%@", APPID];
        
 //4.和2跳转相同
 NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/app/id%@", APPID];
        
 //5.以 itms-apps:// 或 https:// 开头的应用详情页链接,跳转到AppStore
 NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@", APPID];
或者
NSString * urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",@"**********];
// https://开头的连接也可以跳转到appstore
        
 //6.以 itms:// 开头的应用详情页连接,会跳转到 iTunes Store,打开的仍然是应用的下载页
 NSString *urlStr = [NSString stringWithFormat:@"itms://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@", APPID];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString: urlStr]];

推荐: 方法1、3、5。

1.2跳转到应用评分页

itms-apps://itms://开头的链接都可以,而此时https:// 开头的链接不可以

//1.itms-apps:// 开头
 NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@",APPID];
       
 //2.itms:// 开头
 NSString *urlStr = [NSString stringWithFormat:@"itms://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@",APPID];
        
 //3.itms-apps:// 开头
 NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@&pageNumber=0&sortOrdering=2&mt=8", APPID];
        
 //4.https:// 开头 此时的链接不可以,打开之后就跳转到iPhone自带的【音乐】APP里面了。
 NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=%@",APPID];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString: urlStr]];

推荐:方法1、2、3。

2.app之间跳转

创建两个示例Demo,TestDemo和Test2Demo,现在需要实现从Test2Demo跳转到TestDemo中

1、在被跳转的App配置一个协议scheme,这里命名为test(名字可随意配置,当然最好是英文并且跟你项目相关)

targets -> info -> URL Types ->URL Scheme ->填写协议

scheme配置示意图

2、在需要跳转操作的App中执行跳转的方法,实现下面方法

    NSURL *url = [NSURL URLWithString:@"firstApp://"];

    if ([[UIApplication sharedApplication] canOpenURL:url]) {

        [[UIApplication sharedApplication] openURL:url];

    }else{
        NSLog(@"没有安装应用");
    }

OK,到这里如果你的系统是ios9.0以下,已经大大功告成了。但是,如果是9.0以后,请看下一步。

3、配置协议白名单

在需要跳转操作的App的info.plist文件中增加一个LSApplicationQueriesSchemes字段,把它设置为数组类型,并配置需要跳转的协议名单

白名单设置示意

其中参数mt:8的含义为:

mt 代表 meta-type,有效值如下:
1 Music
2 Podcasts
3 Audiobooks
4 TV Shows
5 Music Videos
6 Movies
7 iPod Games
8 Mobile Software Applications
9 Ringtones
10 iTunes U
11 E-Books
12 Desktop Apps

3. app之间跳转参数传递

3.1 url跳转传参

实现iOS APP之间的相互跳转, 使用的就是UIApplication的openURL:方法.
那么, 如果想要在openURL方法中传递参数和数据, 应该如何实现呢?

AppDelegate的application:openURL:options方法

- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
当使用openURL从其他APP跳转至当前APP时, 该方法会自动调用.

通过URL传递参数,在AppDelegate的application:openURL:options方法中, 参数url在两个APP都是一样的值.

如在第一个App中调用如下,

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"firstApp://params?param1=111&param2=222"]];

则在 跳转到的App 的AppDelegate.m文件的application:openURL:options方法中, 即可获取该url的完整信息.

- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options {
    NSLog(@"url: %@", url);
}

这样, 就通过URL本身在两个APP之间传递了参数.该参数的格式与Http请求的GET格式保存一致.

3.2通过UIPasteboard传递数据

通过URL只能简单地传递参数, 如果要传递负责的数据如image就只能通过剪贴板UIPasteboard了.

如在跳转入口App中, 向系统剪贴板中填充数据:

UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.string = @"Modal.jpg";
pasteboard.image = [UIImage imageNamed:@"Modal.jpg"];

// NSData *imageData = UIImageJPEGRepresentation([UIImage imageNamed:@"Modal.jpg"], 0);
// [pasteboard setData:imageData forPasteboardType:@"Modal.jpg"];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"demomixpanel://params?param1=111&param2=222"]];

则在 跳转到的App 中, 从剪贴板中取出数据便可以使用:

- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options {
    NSLog(@"url: %@", url);

    UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
    // label.text = pasteboard.string;    
    // imageView.image = pasteboard.image;
    // NSData *imageData = [pasteboard dataForPasteboardType:@"Modal.jpg"];
    // imageView.image = [UIImage imageWithData:imageData];
}
上一篇下一篇

猜你喜欢

热点阅读