进入百度的网页
2016-03-30 本文已影响18人
傲骨天成科技
UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.frame];
NSURL *url = [NSURL URLWithString:@"HTTP://www.baidu.com"];
[webView loadRequest:[NSURLRequest requestWithURL:url]];
[self.view addSubview:webView];