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 在我的应用程序中显示网页。但是当使用 target="_blank" 的超链接被选中时,应用程序会自动终止。有什么办法可以避免这种崩溃。
提前谢谢。
经过研究,我发现如果我们将a标签的目标设置为_self我们可以轻松避免崩溃。但是仍然有限制,因为我们可以在这个方法中应用 Javascript:
a
_self
- (void)webViewDidFinishLoad:(UIWebView *)webView
所以之前,在加载页面之前选择这个链接会使应用程序崩溃,因为没有应用 Javascript。
如果有人知道解决方案,请指导我。
谢谢