美文网首页
APP间跳转

APP间跳转

作者: FallPine | 来源:发表于2022-04-16 15:40 被阅读0次
    • 方法一

    使用 URL Scheme

    参考文章:航歌
    Swift - URL schemes的使用样例(如:在Safari中打开App)

    • 方法二

    使用通用链接--Universal Links
    1、创建一个apple-app-site-association文件,内容是json格式
    假设内容如下:

    {
        "applinks": {
            "apps": [],
            "details": [
                {
                    "appID": "MNARL96.com.hangge.demo",
                    "paths": [ "NOT /blog/support/*", "/blog/*", "/app/"]
                },
                {
                    "appID": "ABCDEFG12.com.hangge.demo",
                    "paths": [ "*" ]
                }
            ]
        }
    }
    

    2、在服务器的根目录下创建well-known 文件夹,并把apple-app-site-association文件放到该文件夹中
    3、在Xcode中配置Associated Domains,把服务器的域名配置进来,把https协议去掉,用applinks开头,例如:applinks:www.xxxxxx

    参考文章:航歌
    Swift - 通用链接(Universal Links)的使用详解

    相关文章

      网友评论

          本文标题:APP间跳转

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