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
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://.
http://
https://