IOS 之 UIWebView

UIWebView

本文是模仿 打字练习 如有雷同 欢迎咨询
  • UIWebVeiw 用于在 APP中 嵌入 网页内容, 通常情况系是 html 格式的 网页, 也支持 pdf work 等 文档

在iOS中的控件使用举例:

  • 创建一个 WebView 网页视图 frame 看着自己给吧
UIWebView *web= [ [UIWebView alloc ]initWithFrame:CGRectMake()];
[self.view addSubview : web];
  • 对页面进行缩放以适应尺寸 展示的尺寸
web.scalesPageToFit = YES;
  • 创建URL; 并根据其创建 NSURLRequest
NSURL *url = [NSURL URLWithString:@"http://sina.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
  • 加载
[web loadRequest:request];
  • 设置代理 满足 协议
_webView.delegate = self;
  • 网页视图背景颜色
web.backgroundgroundColor = [UIColor clearColor];
  • opaque不透明的 设置NO 表是透明
web.opaque = NO;
  • 给其加个背景图片
UIImageView *imv =[[UIImageView alloc]initWithFrame:CGRectMake()
imv.image = [UIImage imageNamed:@""];
[self.view addSubview:imv belowSubview:imv];
  • 然后 在info 里面 加上 就可以运行了
App Transport  -------- >>>>> Allow 

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

你可能感兴趣的:(IOS 之 UIWebView)