1:注册domains
注册完成后在会生成一个entitlments文件
如果没有需要手动添加
2上传apple-app-site-association
生成一个apple-app-site-association文件,没有后缀,里面内容:
<p></p><pre><code>
{
"applinks": {
"apps": [],
"details": [
{
"appID":"11***433.com.domain.kk",
"paths":[ "*" ]
}
]
}
}
</code></pre>
appID:teamID和bundleID组成的用. 连接
path:*通配符表示上面domain如www.yidianling.com后面的全部的文件;如果是想在某个页面识别跳转:/login/detail/2类似这样的
3.h5中的点击跳转
将该网址替换成domain添加过的如https://www.yidianling.com
后面需要的path和上面添加的path一样就行
4最后就是在xcode里面处理了
这样基本就完成了,然后可以在微信中试着操作下