1、创建plist
XCode菜单栏->Product->Archive 等待编译完成.
在Archive窗口下点击右边Share按钮.
将ipa另存至任意目录并勾选Save for EnterPrise Distribution 并填选内容即可生成对应程序的plist
全部设置的 Plist 如下:(文件编码UTF-8)
<?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">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>程序ipa的URL</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>大ICON图标的URL</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>小ICON图标的URL</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>程序的identifier在xcode中</string>
<key>bundle-version</key>
<string>程序版本号在xcode中</string>
<key>kind</key>
<string>software</string>
<key>subtitle</key>
<string>子标题</string>
<key>title</key>
<string>标题</string>
</dict>
</dict>
</array>
</dict>
</plist>
2、创建HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<a href="itms-services://?action=download-manifest&url=http://localhost/app.plist">在线安装</a>
</body>
</html>
主要语句:
itms-services://?action=download-manifest&url=http://localhost/app.plist
调用了Plist并且请求了Plist内部指定的程序URL。