How to load HTTP content in Webkit in objective-c?
The code I use:
NSString *loadedURL = @"http://www.apple.com";
NSURL *targetURL = [NSURL URLWithString:loadedURL];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[_webView loadRequest:request];
If i post a link "https://www.apple.com" (with httpS) its open correctly, but from HTTP not. Can you help me?