IOS 之 UIWebView

2016-07-04  本文已影响8人  小小Q吖

UIWebView

本文是模仿 打字练习 如有雷同 欢迎咨询

在iOS中的控件使用举例:

UIWebView *web= [ [UIWebView alloc ]initWithFrame:CGRectMake()];
[self.view addSubview : web];
web.scalesPageToFit = YES;
NSURL *url = [NSURL URLWithString:@"http://sina.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[web loadRequest:request];
_webView.delegate = self;
web.backgroundgroundColor = [UIColor clearColor];
web.opaque = NO;
UIImageView *imv =[[UIImageView alloc]initWithFrame:CGRectMake()
imv.image = [UIImage imageNamed:@""];
[self.view addSubview:imv belowSubview:imv];
App Transport  -------- >>>>> Allow 

嘿嘿 模仿别人的 后面的代理没看懂 就没有弄

上一篇 下一篇

猜你喜欢

热点阅读