ios - 如何检测 UIWebView 中的点击事件
<p><p>我有一个 UITableView,可以像这样将内容加载到 UIWebView 中:</p>
<pre><code>//MainViewController.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
CGRect bounds = [ [ UIScreen mainScreen ] applicationFrame ];
UIScrollView *scrollView = [ initWithFrame:bounds];
UIWebView *htmlView = [ [ UIWebView alloc ] initWithFrame:];
htmlView.frame = CGRectMake(10,10,280,360);
NSURLRequest *requestObj = ;
//Load the request in the UIWebView.
;
scrollView.contentSize = .size;
;
;
;
htmlView = nil;
;
scrollView = nil;
[ pushViewController:detailsViewController animated:YES];
;
}
</code></pre>
<p>提供给 UIWebView 的所有远程内容都来 self 编写的 Web 服务。第一个屏幕截图是从标题为“词汇表”的 ListView 中选择一个单词时显示的内容</p>
<p> <img src="/image/9oCg8.jpg" alt="Detail view controller with UIWebView HTML content"/> </p>
<p>这一切都很好,直到您点击链接,在这种情况下,点击 UIWebView 内容中的“框架”链接。新内容已加载,但我需要告诉导航栏 UIWebView 已更改,因此我至少可以更改白色标题文本以匹配新内容。我应该实现哪些 UIWebView 方法以及它们应该去哪里?</p>
<p> <img src="/image/C7dvA.jpg" alt="enter image description here"/> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>将您的 ViewController 设置为 UIWebView 的委托(delegate),然后实现</p>
<pre><code>-(BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何检测 UIWebView 中的点击事件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9196585/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9196585/
</a>
</p>
页:
[1]