——需求描述实现一个可以直接通过链接(url地址)下载安装的iosApp。简单来说:跳过iphone上的appStore,直接通过链接下载(.ipa)文件安装到手机上。两篇参考文章https://blog.csdn.net/qian_meng/article/details/48767209https://blog.csdn.net/xlyrh/article/details/79078271三个前置条件大概需要以下三个东西:1.合法的ipafile2..plist文件3.https协议开头的合法下载地址以上三个内容在下面详细介绍4.合法.ipa文件1.什么是.ipa文件?参考文章:https://zhuanlan.zhihu.com/p/1829409262。把.ipa文件放在可以下载的地方注意:测试ipa文件必须用https开头的地址:中央视频https://vkceyugu.cdn。bspapp.com/VKCEYUGU-fbffecec-7532-4bba-a546-cc188e5c568c/e06f9394-2b98-44ea-971d-a35674e7facb.ipa5.plist文件准备一个.plist文件,存放在gitee中(或者放在其他地方),我的Test.plist文件地址:https://gitee.com/relly9/mytest/raw/master/testApp.list特别注意六代下载地址(itms-services协议)地址前缀:itms-services://?action=download-manifest&url=.plist地址:https://gitee.com/relly9/mytest/raw/master/testApp.list最终地址为:地址前缀+.plist文件地址itms-services://?action=download-manifest&url=https://gitee.com/relly9/mytest/raw/master/testApp.list最后下载地址
