https://en-gb.facebook.com/login/
I can opened above links successfully... But below link not opened in webView why? How to solve this problem?
https://itunes.apple.com/in/developer/whatsapp-inc/id310634000?mt=8&uo=2
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
UIWebView *webView = [[UIWebView alloc]init];
webView.frame = self.view.frame;
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.urlString]]];
[self.view addSubview:webView];
NSLog(@"%@", self.urlString);
// https://itunes.apple.com/in/developer/whatsapp-inc/id310634000?mt=8&uo=2
}
This self.urlString comes from server...