在SDK中打开其他接入应用的解决方案

标签: sdk 应用 | 发表时间:2013-03-18 09:54 | 作者:l_ch_g
出处:http://blog.csdn.net

在SDK中打开其他接入应用的解决方案

一直以来,在iOS的开发中,在程序中打开另外一个应用是不允许。后来有正义之士用class-dump在私有API中找到了这样的功能。那就是使用UIApplication的launchApplicationWithIdentifier:suspended:来打开。

使用的办法如下:

 

NSString *identifier = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIdentifier"];

[[UIApplication sharedApplication] launchApplicationWithIdentifier:identifier suspended:NO];

 

毕竟是私有API不是一个好的办法,至少你永远都得不到App Store的认可。

 

在某些时候是其实我们可能还是需要这样的功能。作为一个SDK,其实还是有一种比较好的解决方案的。那就是使用UIApplication的openURL:的方法。

 

我们先来了解一下openURL和实现的方案。OpenURL其实是有很丰富的功能,除了简单的调用safari打开网站,还可有google地图搜索,Mail,拨打电话,发送短信,打开AppStore。

 

-(IBAction)openMaps {//打开地图
    // Where is Apple on the map anyway?
    NSString* addressText = @”1 Infinite Loop, Cupertino, CA 95014″;
    // URL encode the spaces
    addressText =  [addressText stringByAddingPercentEscapesUsingEncoding: NSASCIIStringEncoding];
    NSString* urlText = [NSString stringWithFormat:@"http://maps.google.com/maps?q=%@", addressText];
    // lets throw this text on the log so we can view the url in the event we have an issue
    NSLog(urlText);
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlText]];
    }
    -(IBAction)openEmail {//打开mail
    // Fire off an email to apple support
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://[email protected]"]];
    }
    -(IBAction)openPhone {//拨打电话
    // Call Google 411
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8004664411"]];
    }
    -(IBAction)openSms {//打开短信
    // Text to Google SMS
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://466453"]];
    }
    -(IBAction)openBrowser {//打开浏览器
    // Lanuch any iPhone developers fav site
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunesconnect.apple.com"]];
    }

那怎样来制作从一个应用打开其他应用,这其实很简单,打开info.plist,添加一项URL types,展开URL types,再展开Item1,将Item1下的URL identifier修改为URL Scheme,展开URL Scheme,将Item1的内容修改为myapp其他程序可通过myapp://访问此自定义URL。

其实就是类似下面的样式。

 

 

这样就只要open这个应用的自定义url,系统就可以帮我们找到并打开这个程序。

 

NSURL *url = [NSURL URLWithString:@" myapp:"];  

[[UIApplication sharedApplication] openURL:url]; 

 

作为SDK比普通应用的优势在于,每一个接入的应用都有一个AppId用于区分,我们就可以充分利用这个AppId来制作。

 

我们可以要求第三方开发者需要在他们Info.Plist中配置这样的字段,这样我们就可以在我们的SDK界面中打开对应AppId的应用,当然,这需要设备中真的有安装这个程序。

 

例如某应用分配AppId为111122223333,我们要求其再Info.plist定义URL Schemes为NDSDK111122223333,这样,我们在内部代码就可以准确识别是否有这样的程序。

 

更有甚者,我们可以通过canOpenURL这个方法来判断这台设备是否安装了这个应用,如果可以打开,返回YES,那应该是有安装这样的程序,不管是ipa还是Pxl的程序,应该都是没有问题的。

 

如果我们真的选择这样子做,那就需要在文档中说明清楚。但是需要注意的是,也许作为程序员,可能不是很喜欢看文档,也许你费尽心思写的文档他并没有看到。这时我们应该来一点强硬的手段,于是有了下面这段代码的功能。

1:检查用户是否配置了AppId

2:有没有准确配置Info的CFBundleURLSchemes字段

3:是不是可以正确打开。

 

   // Check App ID:

    // This is really a warning for the developer, this should not

    // happen in a completed app

    if (!kAppId) {

        UIAlertView *alertView = [[UIAlertView alloc]

                                  initWithTitle:@"Setup Error"

                                  message:@"Missing app ID. You cannot run the app until you provide this in the code."

                                  delegate:self

                                  cancelButtonTitle:@"OK"

                                  otherButtonTitles:nil,

                                  nil];

        [alertView show];

        [alertView release];

    } else {

        // Now check that the URL scheme fb[app_id]://authorize is in the .plist and can

        // be opened, doing a simple check without local app id factored in here

        NSString *url = [NSString stringWithFormat:@"fb%@://authorize",kAppId];

        BOOL bSchemeInPlist = NO; // find out if the sceme is in the plist file.

        NSArray* aBundleURLTypes = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleURLTypes"];

        if ([aBundleURLTypes isKindOfClass:[NSArray class]] &&

            ([aBundleURLTypes count] > 0)) {

            NSDictionary* aBundleURLTypes0 = [aBundleURLTypes objectAtIndex:0];

            if ([aBundleURLTypes0 isKindOfClass:[NSDictionary class]]) {

                NSArray* aBundleURLSchemes = [aBundleURLTypes0 objectForKey:@"CFBundleURLSchemes"];

                if ([aBundleURLSchemes isKindOfClass:[NSArray class]] &&

                    ([aBundleURLSchemes count] > 0)) {

                    NSString *scheme = [aBundleURLSchemes objectAtIndex:0];

                    if ([scheme isKindOfClass:[NSString class]] &&

                        [url hasPrefix:scheme]) {

                        bSchemeInPlist = YES;

                    }

                }

            }

        }

        // Check if the authorization callback will work

        BOOL bCanOpenUrl = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString: url]];

        if (!bSchemeInPlist || !bCanOpenUrl) {

            UIAlertView *alertView = [[UIAlertView alloc]

                                      initWithTitle:@"Setup Error"

                                      message:@"Invalid or missing URL scheme. You cannot run the app until you set up a valid URL scheme in your .plist."

                                      delegate:self

                                      cancelButtonTitle:@"OK"

                                      otherButtonTitles:nil,

                                      nil];

            [alertView show];

            [alertView release];

        }

    }

 

作者:l_ch_g 发表于2013-3-18 9:54:42 原文链接
阅读:0 评论:0 查看评论

相关 [sdk 应用] 推荐:

黑莓 Playbook 原生 SDK 向指定应用开发者开放

- ZeeJee - Engadget 中国版
黑莓一些被特别挑选指定的开发者们得到了最新的奖赏,黑莓向他们提供了 Playbook 原生的 SDK. 这个开发套件包括了支持 MAC 的 QNX Momentics 工具包,升级的 API 和一些示例,并且支持 Adobe AIR 扩展. 同时黑莓还会在 10 月 18-20日 San Francisco 举行开发者大会.

【转载】Javascript SDK:轻松开发HTML5应用的必备工具

- - HTML5研究小组
Javascript SDK:轻松开发HTML5应用的必备工具. annie 2012-05-31 16:03    1条评论. 运算平台  Parse最新发布Javascript SDK,有了它,开发HTML 5应用变得更加简单轻松. Parse 是由Y Coumbinator所孵化的 创业公司,开发者能够在上面创建自己的应用,Parse 更加专注于移动开发者.

Parse将推出Javascript SDK支持移动网页应用

- - CocoaChina移动观察
文/Kim-Mai Culter. 由美国知名创业孵化器Y Combinator支持的创业Parse曾为面向移动应用(如Band of the Day 和Hipmunk)提供后端支持,宣布将为移动网络应用提供支持. 这家位于旧金山的创业公司提供了面向JavaScript的SDK,实现更为方便的创建HTML5应用.

在SDK中打开其他接入应用的解决方案

- - CSDN博客移动开发推荐文章
在SDK中打开其他接入应用的解决方案. 一直以来,在iOS的开发中,在程序中打开另外一个应用是不允许. 后来有正义之士用class-dump在私有API中找到了这样的功能. 那就是使用UIApplication的launchApplicationWithIdentifier:suspended:来打开.

Goolge发布Chromecast SDK

- - Chrome迷
自从有了Chromecast,用户把各种自己喜爱的在线内容投放到电视屏幕上变得非常方便,投放过程简单得只需要用户按下手机、平板和笔记本上的投放按钮. 今日,为了让内容更容易地被呈现到电视上,Google发布了Chromecast软件开发套件(SDK),开发者们可以在自己的应用和网站上提供Chromecast接入.

微软发布Kinect SDK For Windows

- skyan - Solidot
微软遵守承诺发布了Kinect SDK For Windows,允许教育研究人员或爱好者为这种体感控制器开发新的应用. SDK是基于XBOX 360上使用的软件,但微软将其移植到了.NET平台,支持C#、VB.NET或C++.NET等开发语言. Kinect SDK For Windows的运行平台是Windows 7,最低硬件需求是4GB RAM、双核处理器和DirectX 9.0c显卡,开发工具是Visual Studio 2010 Express(免费版),.NET Framework 4.0.

Kinect for Windows SDK出炉了

- 杯子 - 增强视觉 | 计算机视觉 增强现实
官方首页:http://research.microsoft.com/en-us/um/redmond/projects/kinectsdk/default.aspx. 微软从PrimeSense买来Kinect硬件加上来自Andrew Blake 带领的MSR剑桥视觉组的算法,让微软在本已经热卖的XBox360上又大赚了一大笔.

Kinect for Windows SDK 本周发布

- 王辉 - LiveSino - LiveSide 中文版
微软在 MIX 11 大会上宣布了 Kinect for Windows SDK,也演示了相关的开发和应用,但始终未提供 Beta 版 SDK 的下载. 微软西班牙总裁 María Garaña 周三披露微软计划本周发布 Kinect for Windows SDK Beta. 根据微软研究院网站,Kinect for Windows SDK 包括:.

GAE SDK 1.5.5 版发布

- Ken - python.cn(jobs, news)
本想睡觉了,突然看到GAE SDK 1.5.5版发布了,于是就再坚持一下,写完本文吧. 这个版本最重要的更新就是支持Python 2.7了. 关于Python 2.7的新功能,可以查看《What's New in Python 2.7》这篇文档. 在app.yaml中设置threadsafe: true即可启用,必须使用WSGI接口(直接在app.yaml里设置WSGI application对象的路径,而非Python文件).

GAE SDK 1.5.5版发布

- f41c0n - keakon的涂鸦馆
本想睡觉了,突然看到GAE SDK 1.5.5版发布了,于是就再坚持一下,写完本文吧. 这个版本最重要的更新就是支持Python 2.7了. 关于Python 2.7的新功能,可以查看《What's New in Python 2.7》这篇文档. 在app.yaml中设置threadsafe: true即可启用,必须使用WSGI接口(直接在app.yaml里设置WSGI application对象的路径,而非Python文件).