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 上已安装应用程序的列表


基础教程推荐
- :hover 状态不会在 iOS 上结束 2022-01-01
- 在 iOS 上默认是 char 签名还是 unsigned? 2022-01-01
- Android ViewPager:在 ViewPager 中更新屏幕外但缓存的片段 2022-01-01
- 固定小数的Android Money Input 2022-01-01
- 如何使 UINavigationBar 背景透明? 2022-01-01
- LocationClient 与 LocationManager 2022-01-01
- Android文本颜色不会改变颜色 2022-01-01
- 使用 Ryzen 处理器同时运行 WSL2 和 Android Studio 2022-01-01
- 如何使用 YouTube API V3? 2022-01-01
- “让"到底是怎么回事?关键字在 Swift 中的作用? 2022-01-01