iOS简单加载一个网页的方法
2013-08-03 15:56:15 来源:WEB开发网核心提示: .h文件中@property(strong ,nonitomic) UIWebView * webView;.m文件中-(void)viewDidLoad{self.webview = [[UIWebView alloc]initWithFormat:CGRectmake(0,0,320,480)];[self.vi
.h文件中
@property(strong ,nonitomic) UIWebView * webView;
.m文件中
-(void)viewDidLoad
{
self.webview = [[UIWebView alloc]initWithFormat:CGRectmake(0,0,320,480)];
[self.view addSubview:self.webView];
NSUrlRequeast * request = [NSURLRequest requestWithUrl:[NSURL urlWithString:"http://www.baidu.com"]];
//运行一下,百度页面就出来了
[self.webview loadRequest:request];
}
更多精彩
赞助商链接