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。这个网页很简单 - 在某处出现的一张图片 在用 xcode 处理后如何接收这个 URL?我不想在同一个网页视图中打开这个链接(现在发生了什么)。感谢您的任何提示。
使用此委托功能。
-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{ NSURL *regURL=[request URL]; NSString *urlString=[regURL absoluteString]; }