I am learing WebView.
when I do something like
NSString *url = @"www.google.com";
[_webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
it fails.
But when I type www.google.com
(or even google.com) in standard browser, it works fine.
I also noticed that after loading the page, the url text field in standard browser changes the link from www.google.com
to https:// www. google.co.in/?gws_rd=ssl
In above code when I set NSString *url = @"https://www.google.co.in/?gws_rd=ssl"
it works fine
So how do I implement my WebView view so that if should work like a standard browser it terms of above context