我正在尝试在我的设备上检测安装的 Instagram,以前我使用此代码来检测应用程序,但它似乎不适用于 iOS 6 或非 JB 设备:
NSString *filePath = @"/Applications/Instagram.app";
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath])
{
[self checkingInstalledApp];
}
else
{
NSLog(@"no instagram installed");
}
我检查了这个问题,但他的回答给了我很多错误!任何解决方案?