IOS 網路淺析-(十二 UIWebView簡介),iosuiwebview

來源:互聯網
上載者:User

IOS 網路淺析-(十二 UIWebView簡介),iosuiwebview

在這篇隨筆裡,我們只要知道UIWebView是什麼就可以了。

UIWebView 是蘋果提供的用來展示網頁的UI控制項,它也是最占記憶體的控制項。

iOS8.0之後出現了webkit架構,WKWebView相比UIWebView節省了1/4~1/3的記憶體,速度快,但是沒緩衝功能。

對於一些購物類app網頁的展示是必不可免的,因此UIWebView對於我們來說也是應該精通的歌空間。

下面給大家先簡單介紹一下UIWebView。

 

////  ViewController.m//  CX-UIWebView////  Created by ma c on 16/3/23.//  Copyright © 2016年 xubaoaichiyu. All rights reserved.//#import "ViewController.h"@interface ViewController ()<UIWebViewDelegate>@property (nonatomic, strong) UIWebView * webView;@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];    //初始化webView    _webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 20, self.view.frame.size.width, CGRectGetHeight(self.view.frame) - 60)];    NSURL * url = [NSURL URLWithString:@"http://www.baidu.com"];        [_webView loadRequest:[NSURLRequest requestWithURL:url]];    //把webView添加到View上    [self.view addSubview:_webView];}/* - (void)reload;  重新整理 - (void)stopLoading; 停止load  - (void)goBack; 返回 - (void)goForward; 前進 */@end

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.