首页 > 代码库 > 使用SDWebImage淡入淡出的方式加载图片
使用SDWebImage淡入淡出的方式加载图片
使用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
以下是需要注意的地方
使用SDWebImage淡入淡出的方式加载图片
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。