I am using web view in my app, getting a URL from a text field. It works if the string starts with "http://". I am trying to modify the code so that it can also handle the situations where users don't enter "http://" or "https://"
How to check if the URL doesn't have "http://" in it ? How to modify the URL to add "http://" in it ?
NSString *URLString = textField.text;
NSURL *URL = [NSURL URLWithString:URLString];
NSURLRequest *request = [NSURLRequest requestWithURL:URL];
[self.webView loadRequest:request];
Let me update answer to Swift 4 and WKWebKit
I solved like this, Swift 4 and up:
Try This.
Try This: