ios web view - after a click, how to open a page in a web browser instead of embedded in an app
问题 I have a UIWebView screen and in it I have a link which I want to go to a different web page. Right now I have this: if ([request.URL.scheme isEqualToString:@"something"]) { NSURL *url = [NSURL URLWithString:@"stackoverflow.com]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [theWebView loadRequest:request]; } But it just opens the link within the app itself. But how do I make it load the web browser and open the url inside the web browser? And similarly, if I want to link to my