_executing =
NO;
_finished =
NO;
改为:
self.executing =
NO;
self.finished =
NO;...
分类:
移动开发 时间:
2014-10-08 11:38:46
阅读次数:
205
报错报错:Use of undeclared identifier '_executing' / '_finished';
解决方法如下:...
分类:
Web程序 时间:
2014-10-05 13:16:48
阅读次数:
164
测试SDWebImage淡入淡出效果在UITableView中的重用显示问题这个是在上一篇教程的基础上所添加的测试环节!效果图(从效果图中看是没有任何重用问题的):源码:ImageCell.h 与ImageCell.m//// ImageCell.h// SDWebImageFade//// ...
分类:
Web程序 时间:
2014-10-05 10:06:38
阅读次数:
313
使用SDWebImage淡入淡出的方式加载图片效果:请通过以下方式下载源码:找到它修改文件的地方:以下是使用源码://// ViewController.m// SDWebImageFade//// Created by YouXianMing on 14-10-5.// Copyright...
分类:
Web程序 时间:
2014-10-05 08:30:08
阅读次数:
552
缓存图片方法
[[SDImageCache sharedImageCache] storeImage:myImage forKey:myCacheKey];
读取缓存
UIImage *myCachedImage = [[SDImageCache sharedImageCache] imageFromKey:myCacheKey];...
分类:
Web程序 时间:
2014-09-29 14:21:40
阅读次数:
126
报错:Use of undeclared identifier '_executing' / '_finished';解决方法:在SDWebImageDownloaderOperation类的实现中(@implementation里)添加:1 @synthesize executing = _exe...
分类:
Web程序 时间:
2014-09-21 22:43:01
阅读次数:
1443
报错:Use of undeclared identifier '_executing' / '_finished';解决方法:在SDWebImageDownloaderOperation类的实现中(@implementation里)添加:@synthesize executing = _executing ;
@synthesize finished = _finished;即可。...
分类:
Web程序 时间:
2014-09-20 20:34:27
阅读次数:
249
SDWebImage托管在github上。https://github.com/rs/SDWebImage这个类库提供一个UIImageView类别以支持加载来自网络的远程图片。具有缓存管理、异步下载、同一个URL下载次数控制和优化等特征。将SDWebImage类库添加入工程时,一定注意需要添加Ma...
分类:
Web程序 时间:
2014-09-10 19:11:30
阅读次数:
198
对之前的项目总结一下: 事情是这样的,我需要在定制Cell完成新闻类app的展示 虽然说SDWebImage提供了一个方法,异步加载图片到UIImageView上 但是,有些时候。需要的图片并不是需要铺满UIImageView 于是就抛弃了...
分类:
移动开发 时间:
2014-08-18 22:12:44
阅读次数:
279