美文网首页
【iOS】iOS 9 微信、支付宝等跳转问题

【iOS】iOS 9 微信、支付宝等跳转问题

作者: 印比八方来 | 来源:发表于2018-10-07 08:38 被阅读0次

1.在Info.plist中增加LSApplicationQueriesSchemes数组

2.在LSApplicationQueriesSchemes数组中增加NSString字段,内容为要跳转的应用的URL Scheme。例如:

<key>LSApplicationQueriesSchemes</key>
<array>
    <!-- 微信 URL Scheme 白名单-->
    <string>wechat</string>
    <string>weixin</string>
</array>

相关文章

网友评论

      本文标题:【iOS】iOS 9 微信、支付宝等跳转问题

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