https://www.google.co.in/如何在目標c中打開https鏈接?
https://en-gb.facebook.com/login/
我可以在上面的鏈接打開成功......但是下面鏈接在web視圖爲什麼不開?如何解決這個問題呢?
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
}
這self.urlString來自服務器...
://而不使用https:從服務器// –
其實這是網上的數據來(Web服務的概念),如何我可以做 – Marking
我試過它不工作.... – Marking