I want to open link starting with www they do not open. My code working only for http. Please help > I am newer in iOS.I shall be highly obliged.
- (BOOL)webView
Kindly add one more else if
else if([request.URL.absoluteString rangeOfString:@"www://"].location != NSNotFound) {
return YES;
}
its also advisable to add, http://
before each URL you've, and for a note some URL may be of secure network so their extension can be https://
.
NSURL *url=[NSURL URLWithString:@"http://"];
[self.myWebView loadHTMLString:tempString baseURL:url];
[self.myWebView loadHTMLString:tempString baseURL:[NSURL URLWithString:@"http://"]];