I'm using webView on iOS to access a web page within a native application using the objective-c language as in the following example:
NSURL *url = [NSURL URLWithString:@"http://www.exemplo.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[_webView loadRequest:request];
But I would like the page to be fully loaded if it automatically closes without the user having to interfere. I already looked in the NSURL documentation, but I did not find anything to help me with this.