发出 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"]]];