We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在iOS9以前,检测微信是否安装,用微信SDK中的[WXApi isWXAppInstalled]来检测就可以了,但在iOS9之后,需要在Info.plist中将要使用的URL Schemes列为白名单,才可正常检查应用是否安装。
[WXApi isWXAppInstalled]
Info.plist
URL Schemes
<key>LSApplicationQueriesSchemes</key> <array> <string>wechat</string> <string>weixin</string> <string>baidumap</string> <string>iosamap</string> <string>mqq</string> <string>weibo</string> <string>tencentweibo</string> <string>sinaweibo</string> </array> <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>
The text was updated successfully, but these errors were encountered:
补充:iOS9适配系列教程
Sorry, something went wrong.
No branches or pull requests
在iOS9以前,检测微信是否安装,用微信SDK中的
[WXApi isWXAppInstalled]
来检测就可以了,但在iOS9之后,需要在Info.plist
中将要使用的URL Schemes
列为白名单,才可正常检查应用是否安装。常用App URL Scheme
The text was updated successfully, but these errors were encountered: