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 是否正在导航到存储在 Web 服务器上的 IPA 文件的地址的应用程序。
例子:
http://www.website.com/ipa.ipa
显然,在正常情况下,导航到 IPA 的地址时会显示错误,但是对于我的应用程序,我需要能够捕获 IPA 的地址并将其存储为NSString要发送到服务器进行处理的地址。
NSString
这是 UIWebViewDelegate 协议中的一种方法,它可能会有所帮助:
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType;
只需将您的控制器设置为 webview 的委托并实现上述方法。