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 上已安装应用程序的列表
基础教程推荐
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
