How does iOS cache images and iOS images?

Source: Internet
Author: User

How does iOS cache images and iOS images?

How does iOS cache images?


In iOS development, it is common to get images from the network. If we load a lot of images, we should add cache to the images so that the next time we can quickly read the images, improve Efficiency


Note: Only one view is created, and no other attributes are written.

1. Normal image loading method (no cache ):

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. You can use a third-party library SDWebImage to add a cache for images.

Download the latest SDWebImage and drag them to the project to import # import "UIImageView + WebCache. h "is introduced into the project. The following example adds a cache to the image. The first time the cache is slow, it will soon become available.

[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"]. Here is a backup image that has not been loaded.


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.