iOS简单加载一个网页的方法
摘要:.h文件中@property(strong,nonitomic)UIWebView*webView;.m文件中-(void)viewDidL...
.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:""]];
//运行一下,百度页面就出来了
[self.webview loadRequest:request];
}
【iOS简单加载一个网页的方法】相关文章:
★ iOS的UI开发中UITabBarControlle的基本使用教程
上一篇:
iOS利用代理实现界面跳转