第一:什么是URL Scheme
与Android的URL Scheme类似,是为方便app之间互相调用而设计的。你可以通过一个类似URL的链接,通过系统的OpenURl来打开该app,并可以传递一些参数。每个URL必须能唯一标识一个APP,如果你设置的URL与别的APP的URL冲突,此时,你的APP不一定会被调用起来,原因是当APP在安装的时候就已经在系统里面注册了此APP的URL Scheme,如果你的一致但是是后安装的,那么系统不会调用你的APP,因为你的APP设置的URL scheme被覆盖了。
当然系统的APP的URL Scheme是优先级高的,不用想着能覆盖系统APP的URL Scheme的注册调用。
第二:URL Scheme有什么作用:
大家知道在IOS系统里面APP之间是相互隔离的,不像Android,每个组件都可以作为一个独立的功能被其他APP调用,但是,IOS系统里面也需要完成类似于三方功能如支付、搜索跳转、导航等等跨APP的功能,怎么实现呢,苹果就使用了URL Scheme来实现了这个功能。通过各个APP设计的符合苹果的统一规范的URL Scheme,系统就会自动去调用相关的APP来完成你的请求。
比如:我们的APP需要使用支付宝的三方支付功能、我的APP需要使用微信分享好的文章,那么此时就可以通过URL Scheme来传递这些数据到支付宝APP或者微信APP,系统会通过这些APP的URL Scheme来调起这些APP,完成你所需要做的跨APP的功能。
第三:怎么使用呢?
这里分为三步:
首先:配置你的APP
要为 iOS 程序添加自定义协议的支持是一件很方便的事,只需要在程序的 Info.plist 添加一个 URL types 节点就可以了。在这个节点里,可以设置这个程序所支持的自定义协议名称,像 http、ftp 这种,一般我们可以设置为程序英文名称,像淘宝客户端中就设置了 taobao,这样 taobao:// 这个形式的 URL 就会关联到淘宝客户端的 App。
其次 处理使用你的URL Scheme来调起你的APP的请求
如果你的APP为TestB,如果处理成功的Scheme如包含了TestBAPP://callsuccess,那么说明你调用其他的APP成功了。如果不是,那么说明是别的APP如TestAAPP调用了你的APP,此时在你的APPDelegate里面添加如下函数以及实现处理,这里是直接返回告诉TestAAPP调用成功的标识TestAAPP://callsuccess:
[objc] view plain copy
1. <pre code_snippet_id="353362" snippet_file_name="blog_20140519_1_1735380" name="code" class="objc">- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
2. {
3. // Do something with the url here
4. if (!url)
5. {
6. return NO;
7. }
8. NSString *handleUrl = [url absoluteString];
9. if ([handleUrl isEqualToString:@"TestBApp://callsuccess"]) {
10. return YES;
11. else{
12. NSString *urlstr = @"TestAAPP:/com.baidu.sidepath.TestA&_callback=TestAApp://callsuccess";
13. NSURL *handlbackeUrl = [NSURL URLWithString:urlstr];
14. sharedApplication] openURL:handlbackeUrl];
15.
16. }</pre><br>
17. }
18. <pre></pre>
19. <pre></pre>
20. <pre></pre>
如果你不想直接返回callback,而是想启动一个页面那么,此时要考虑你的应用是否已经启动,可以如下判断使用:
[objc] view plain copy
1. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
2. sourceApplication:(NSString *)sourceApplication annotation:(id)annotation{
3. NSString *handleUrl = [url absoluteString];
4. if ([handleUrl isEqualToString:@"TestBApp://callsuccess"]) {
5. return YES;
6. else{
7. UINavigationController *vc = (UINavigationController *)_window.rootViewController;
8. if (vc == nil) {
9. PathViewController *controller = [[PathViewController alloc] initWithNibName:@"PathViewController" bundle:nil];
10.
11. self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
12. self.mUINavigationController = [[UINavigationController alloc] init];
13.
14.
15. self.mUINavigationController pushViewController:controller animated:YES];
16. self.window addSubview:self.mUINavigationController.view];
17.
18.
19. // Override point for customization after application launch.
20. self.window.backgroundColor = [UIColor whiteColor];
21. self.window makeKeyAndVisible];
22. }
23. return YES;
24. "353362" snippet_file_name="blog_20140519_2_2650140" name="code" class="objc">}</pre>
25. <pre></pre>
26. 也就是把appdelegate里面的didFinishLaunchingWithOptions初始化app的代码拷贝进去。此时会启动PathViewController这个页面。然后在这个页面里面可以添加一个返回按钮来返回到调用APP。<br>
27. <br>
28. <br>
再次 在TestAAPp里面使用URl Scheme调起你的APP
[objc] view plain copy
1. <pre code_snippet_id="353362" snippet_file_name="blog_20140519_2_5912074" name="code" class="objc"><span style="font-family: Arial, Helvetica, sans-serif;">NSString *urlstr = @"TestBAPP:/com.baidu.sidepath.TestB&_callback=TestAApp://callsuccess";</span></pre>NSURL *url = [NSURL URLWithString:urlstr];[[UIApplication sharedApplication] openURL:url];
2. <pre></pre>
3. <br>
4. <h1><a name="t7"></a>第四 注意事项</h1>
引用苹果官方的代码注释:
[plain] view plain copy
1. application:handleOpenURL:
2. Asks the delegate to open a resource identified by URL. (Deprecated. Use the application:openURL:sourceApplication:annotation: method instead.)
3.
4. <a target="_blank" href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplicationDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UIApplicationDelegate/application:handleOpenURL:">- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url</a>
该函数已经废弃,不过依然可以使用。在IOS4.2之后可以使用新的API来处理URL Scheme。