UIWebView控件

时间:2014-08-11 17:16:32   收藏:0   阅读:237

用处:实现一个web浏览器,加载静态html,动态url,调用js

//加载动态url

self.webView = [[UIWebView alloc]initWithFrame:self.view.bounds];

NSString *str = @"http://www.baidu.com";

NSURL *url = [NSURL URLWithString:str];

NSURLRequest *request = [NSURLRequest requestWithURL:url];

[self.webView loadRequest: request];

 

UIWebView控件,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!