Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试将以下链接放入 UIWebView 加载的一些 html
<A href="itms-apps://itunes.apple.com/us/app/angry-birds/id343200656?mt=8">The download</A>
但它会生成 WebKitErrorDomain/code 101 的错误。
是否可以从 UIWebView 中下载应用程序?
不可以。你可以让应用程序打开应用程序商店来下载应用程序。
使用OpenURL:
OpenURL
NSString* url = @"itms-apps://itunes.apple.com/us/app/angry-birds/id343200656?mt=8"; [[UIApplication sharedApplication] openURL: [NSURL URLWithString: url]];
App Store 应用程序将打开。