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 上已安装应用程序的列表
基础教程推荐
- NSString intValue 不能用于检索电话号码 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
