提交 9654399d authored 作者: JarvanMo's avatar JarvanMo

Merge branch 'master' of github.com:JarvanMo/fluwx

...@@ -76,6 +76,7 @@ isWeChatRegistered = YES; ...@@ -76,6 +76,7 @@ isWeChatRegistered = YES;
### Other ### Other
* [Using Swift?](./doc/USING_SWIFT.md) * [Using Swift?](./doc/USING_SWIFT.md)
* [Having Questions?](./doc/QUESTIONS.md)
### Waiting ### Waiting
## LICENSE ## LICENSE
......
...@@ -77,6 +77,7 @@ isWeChatRegistered = YES; ...@@ -77,6 +77,7 @@ isWeChatRegistered = YES;
### 其他 ### 其他
* [使用Swift?](./doc/USING_SWIFT_CN.md) * [使用Swift?](./doc/USING_SWIFT_CN.md)
* [有问题?](./doc/QUESTIONS_CN.md)
### 更多功能敬请请期待 ### 更多功能敬请请期待
......
## WeChat Not Installed on iOS?
if you have installed WeChat on your iPhone but you still catch an exception that "wechat not installed",just add the following
code to your *info.plist*:
```xml
<key>LSApplicationQueriesSchemes</key>
<array>
<string>weixin</string>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
```
## WeChat Not Installed on iOS?
iOS 9系统策略更新,限制了http协议的访问,此外应用需要在“Info.plist”中将要使用的URL Schemes列为白名单,才可正常检查其他应用是否安装。
受此影响,当你的应用在iOS 9中需要使用微信SDK的相关能力(分享、收藏、支付、登录等)时,需要在“Info.plist”里增加如下代码:
```xml
<key>LSApplicationQueriesSchemes</key>
<array>
<string>weixin</string>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
```
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论