Get list of installed apps on iPhone(获取 iPhone 上已安装应用程序的列表)
问题描述
有没有办法(某些 API)获取 iPhone 设备上已安装应用程序的列表.
Is there a way (some API) to get the list of installed apps on an iPhone device.
在搜索类似问题时,我发现了一些与 url 注册
相关的东西,但我认为必须有一些 API 来执行此操作,因为我不想对应用程序做任何事情,我只想要列表.
While searching for similar questions, I found some thing related to url registration
, but I think there must be some API to do this, as I don't want to do any thing with the app, I just want the list.
推荐答案
不,应用程序是沙盒的,Apple 接受的 API 不包含任何可以让你这样做的东西.
No, apps are sandboxed and Apple-accepted APIs do not include anything that would let you do that.
但是,您可以测试是否安装了某个应用:
You can, however, test whether a certain app is installed:
- 如果已知该应用会处理某种类型的网址
- 通过使用
[[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"thisapp://foo"]
您可以从此处获取应用和 URL 方案列表.
You can get a list of apps and URL schemes from here.
这篇关于获取 iPhone 上已安装应用程序的列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取 iPhone 上已安装应用程序的列表


基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01