iOS如何給圖片加緩衝,iOS圖片加緩衝

來源:互聯網
上載者:User

iOS如何給圖片加緩衝,iOS圖片加緩衝

iOS如何給圖片加緩衝 


在iOS開發中給從網路擷取圖片是常有的事情,如果我們載入的圖片比較多得話,就應該給圖片加上緩衝,這樣下一次就可以很快的讀出圖片,提高效率


說明:下面唯寫了建立一個視圖,沒有寫其他的屬性

1.普通的載入圖片的方法(沒有緩衝):

UIImageView * imageView = [[UIImageView alloc]init];    imageView.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://su.bdimg.com/static/superplus/img/logo_white_ee663702.png"]]];

2.使用第三方庫SDWebImage可以給圖片添加緩衝

下載最新的SDWebImage,直接把他們拖到工程裡面即可,把#import "UIImageView+WebCache.h"引入到工程裡面,看下面執行個體就是給圖片加了緩衝,第一次比較慢,以後就很快了。

[imageView setImageWithURL:[NSURL URLWithString:@"http://su.bdimg.com/static/superplus/img/logo_white_ee663702.png"] placeholderImage:[UIImage imageNamed:@"1.png"]];



placeholderImage:[UIImage imageNamed:@"1.png"],這裡是在圖片還沒有載入出來做的替補圖片。


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.