有没有办法(某些 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 上已安装应用程序的列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!