iOS判断有没有安装微信

原理:判断能不能打开微信的schema

if (![[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"wechat://"]] ) {
        [HPAlertView showMessage:@"没有安装微信"];
    }

你可能感兴趣的:(iOS判断有没有安装微信)