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.
我正在使用 WebView 组件,有时我会重新加载此组件。但有时,在重新加载之前,我想获取 WebView 仍然指向的 URL。有没有可能得到这些信息??
先感谢您。亚历克斯
UIWebView *myWebView = // ... well, we'll just say it exists. NSLog(@"last loaded or currently loading URL: %@", myWebView.request.URL);
这request是一个NSURLRequest用于请求页面的对象,因此您几乎可以从中获取任何可能需要的东西。
request
NSURLRequest