码迷,mamicode.com
首页 > Web开发 > 详细

UIWebView控件

时间:2014-08-11 17:16:32      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   html   htm   ad   ui   js   

用处:实现一个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

UIWebView控件

标签:style   http   color   html   htm   ad   ui   js   

原文地址:http://www.cnblogs.com/AngryCooder/p/3904776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!