美文网首页
IOS 检测是否安装Facebook

IOS 检测是否安装Facebook

作者: MrDemon_ | 来源:发表于2021-03-28 16:18 被阅读0次
    BOOL isInstalled = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"fb://"]];

    if (!isInstalled) {
        //没有安装Facebook
    }else{
        //安装了Facebook
    }
注意事项

1.得在info.plist将fb加入白名单,否则检测无效

    <key>LSApplicationQueriesSchemes</key>
    <array>
        <string>fb</string>
    </array>

相关文章

网友评论

      本文标题:IOS 检测是否安装Facebook

      本文链接:https://www.haomeiwen.com/subject/upwphltx.html