ios实现ipa下载的大概逻辑是:
访问plist文件,plist文件里面有ipa包的完整下载地址。访问plist文件记得加前缀 itms-services://?action=download-manifest&url=
###.plist文件的模板
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
#完整的ipa文件地址
<string>https://xxx.xxx.xxx.xxx:80/web/xxx.ipa</string>
</dict>
</array>
<key>metadata</key>