How to check programmatically if an App is installed?(如果安装了应用程序,如何以编程方式检查?)
问题描述
我正在开发一个 iPhone 应用程序,它将在企业中安装少量第三方应用程序.我有关于捆绑 ID 的信息.有没有办法使用一些系统 API 来检查应用程序是否已经安装?目前应用程序再次安装,覆盖当前安装.我需要以某种方式防止这种情况.(如果应用程序已经安装,Apple 的 AppStore 应用程序会禁用安装选项.)
I am developing an iPhone application which will install few third party applications in an enterprise. I have the information about the bundle IDs. Is there a way to check if the application is already installed, using some system APIs? Currently the application gets installed again, overwriting the current installation. I need to prevent this some how. (Apple's AppStore application disables the installation option if the app is already installed.)
推荐答案
我认为这是不可能直接实现的,但如果应用程序注册了 uri 方案,您可以对此进行测试.
I think this is not possible directly, but if the apps register uri schemes you could test for that.
一个 URI 方案例如是 Facebook 应用程序的 fb://
.您可以在应用程序的 info.plist 中注册它.[UIApplication canOpenURL:url]
会告诉你某个 url 是否会打开.因此,如果测试 fb://
是否会打开,将表明安装了一个注册了 fb://
的应用程序 - 这对 facebook 应用程序来说是一个很好的提示.
A URI scheme is for example fb://
for the facebook app. You can register that in the info.plist of your app. [UIApplication canOpenURL:url]
will tell you if a certain url will or will not open. So testing if fb://
will open, will indicate that there is an app installed which registered fb://
- which is a good hint for the facebook app.
// check whether facebook is (likely to be) installed or not
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"fb://"]]) {
// Safe to launch the facebook app
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"fb://profile/200538917420"]];
}
这篇关于如果安装了应用程序,如何以编程方式检查?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如果安装了应用程序,如何以编程方式检查?


- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- URL编码Swift iOS 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- UITextView 内容插图 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01