我需要知道用户是否在他的iphone设备上有某些应用程序
我有这段代码
BOOL isInstalled = [[LSApplicationWorkspace defaultWorkspace] applicationIsInstalled:@"com.app.identifier"];
if (isInstalled) {
// app is installed }
else {
// app is not installed
}
理论上做的工作
问题是在实践中,是否通过了应用商店?
我可以使用"LSApplicationWorkspace"
类吗?
答案 0 :(得分:2)
没有
不允许所有引用私有API甚至未记录的 API的应用程序。