發出 URL 請求
從 url
載入 webview 中的內容
迅速
webview.loadRequest(NSURLRequest(URL: NSURL(string: "http://www.google.com")!))
Objective-C
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
從 url
載入 webview 中的內容
webview.loadRequest(NSURLRequest(URL: NSURL(string: "http://www.google.com")!))
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];