参见英文答案 >
How to check programmatically if an App is installed?4个
> How can I determine if a user has an iOS app installed?3
在iOS上,您可以通过打开一个这样的URL来启动Facebook应用程序并链接到个人资料:fb:// profile / 12345
> How can I determine if a user has an iOS app installed?3
在iOS上,您可以通过打开一个这样的URL来启动Facebook应用程序并链接到个人资料:fb:// profile / 12345
唯一的问题是,如果没有安装Facebook应用程序,没有任何反应.
有没有办法检测应用程序是否已安装,或者是否支持url方案fb://?
这也适用于Twitter等其他应用程式.
解决方法
BOOL isInstalled = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"fb://"]] if (isInstalled) { } else { }