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看起来像这样的链接:访问网站。在该shouldStartLoadWithRequest方法中,有没有办法获取“访问网站”而不是 URL?我想将此文本用作与某些UIWebViews.
UIWebView
shouldStartLoadWithRequest
UIWebViews
谢谢
在shouldStartLoadWithRequest方法中显然没有办法得到你想要的。它很容易理解 - 该方法主要接收URL它,并且您想要获取的文本是 html 页面的 html 标记的一部分。为了满足您的需求,您似乎需要解析 html 页面,并且当单击某个 url(如在shouldStartLoadWithRequest方法中)时,您必须找到相应的 html 标记(<a href>)以找出该标记内的文本是什么(类似于<a ref=someurl>Visit da page</a>)
URL
<a href>
<a ref=someurl>Visit da page</a>