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

UIWebView

时间:2015-03-04 16:22:36      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

 

 

    UIWebView *web=[[UIWebView alloc]initWithFrame:self.view.frame];

    web.delegate=self;

    NSURL *URL=[NSURL URLWithString:@"http://baidu.com"];

    NSURLRequest *request=[NSURLRequest requestWithURL:URL];
    //让网页适应webview的大小
    web.scalesPageToFit=YES;
    //webView宽高自适应
    web.autoresizingMask = (UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth);

    [self.view addSubview:web];

    [web loadRequest:request];

 

UIWebView

标签:

原文地址:http://www.cnblogs.com/lvchenhao/p/4313408.html

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