首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

iphone UIWebView 的运用

2012-09-25 
iphone UIWebView 的使用【UIWebView 的使用】 1:引用外部连接[super viewDidLoad]CGRect webFrame CGRec

iphone UIWebView 的使用
【UIWebView 的使用】

1:引用外部连接

[super viewDidLoad];    CGRect webFrame = CGRectMake(0.0, 0.0, 320.0, 460.0);    UIWebView *webView = [[UIWebView alloc] initWithFrame:webFrame];    [webView setBackgroundColor:[UIColor whiteColor]];    NSString *urlAddress = @"http://www.baidu.com";    NSURL *url = [NSURL URLWithString:urlAddress];    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];    [webView loadRequest:requestObj];    self.view = webView; 

热点排行