博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用SDWebImage淡入淡出的方式加载图片
阅读量:5829 次
发布时间:2019-06-18

本文共 1103 字,大约阅读时间需要 3 分钟。

使用SDWebImage淡入淡出的方式加载图片

效果:

请通过以下方式下载源码:

找到它修改文件的地方:

以下是使用源码:

////  ViewController.m//  SDWebImageFade////  Created by YouXianMing on 14-10-5.//  Copyright (c) 2014年 YouXianMing. All rights reserved.//#import "ViewController.h"#import "UIImageView+WebCache.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];        NSString *picUrl = @"http://th04.deviantart.net/fs70/PRE/i/2014/277/4/b/cheetahr_by_harpiya-d81l8iv.jpg";        UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.view.bounds];    [self.view addSubview:imageView];        [imageView setImageWithURL:[NSURL URLWithString:picUrl]              placeholderImage:nil                       options:SDWebImageCacheMemoryOnly                      progress:^(NSInteger receivedSize, NSInteger expectedSize) {                          NSLog(@"%.2f", (float)receivedSize / (float)expectedSize);                      }                     completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType) {                                              }];}@end

以下是需要注意的地方

转载地址:http://mnldx.baihongyu.com/

你可能感兴趣的文章
js 中英文字符串长度
查看>>
让xp系统(win2003系统)支持搜索文件内容
查看>>
使用ServiceStack构建Web服务
查看>>
[Everyday Mathematics]20150123
查看>>
阿里云客户服务部总经理张颖杰:用心聆听,服务见智
查看>>
(转) Deep Reinforcement Learning: Playing a Racing Game
查看>>
2016年中国最具幸福感城市评选出炉
查看>>
阿里云服务器怎么去掉tomcat的8080端口
查看>>
50.2. Compiling mod_caucho.so
查看>>
入会申请书参考
查看>>
rbac 概念
查看>>
iOS开发网络篇—网络编程基础
查看>>
同一WM仓位下不停工厂301转储不产生传输申请TR和传输订单TO
查看>>
SAP S/4 HANA新变化-主数据:物料主数据
查看>>
House Robber
查看>>
DBA 技能树
查看>>
css知多少(9)——float下篇
查看>>
MySQL 存储过程和函数(转)
查看>>
解剖SQLSERVER 第八篇 OrcaMDF 现在支持多数据文件的数据库(译)
查看>>
WPF异步载入图片,附带载入中动画
查看>>