标签:sdwebimage
git clone --recursive https://github.com/rs/SDWebImage.git
针对某一个具体的技术问题
,提供完善的解决方案持续
升级维护git
分支添加注释按位与
如果都是 1 结果就是1按位或
如果都是 0 结果就是0/// 操作类型枚举
typedef enum {
ActionTypeTop = 1 << 0,
ActionTypeBottom = 1 << 1,
ActionTypeLeft = 1 << 2,
ActionTypeRight = 1 << 3
} ActionType;
方法目标
方法实现
- (void)action:(ActionType)type {
if (type == 0) {
NSLog(@"无操作");
return;
}
if (type & ActionTypeTop) {
NSLog(@"Top %tu", type & ActionTypeTop);
}
if (type & ActionTypeBottom) {
NSLog(@"Bottom %tu", type & ActionTypeBottom);
}
if (type & ActionTypeLeft) {
NSLog(@"Left %tu", type & ActionTypeLeft);
}
if (type & ActionTypeRight) {
NSLog(@"Right %tu", type & ActionTypeRight);
}
}
ActionType type = ActionTypeTop | ActionTypeRight;
[self action:type];
按位或
可以给一个参数同时设置多个 类型
按位与
可以判断具体的 类型
传入 0
,表示什么附加操作都不做,通常执行效率是最高的typedef NS_OPTIONS(NSUInteger, NSJSONReadingOptions)
按位或
设置数值typedef NS_ENUM(NSInteger, UITableViewStyle)
typedef NS_OPTIONS(NSUInteger, ActionType) {
ActionTypeTop = 1 << 0,
ActionTypeBottom = 1 << 1,
ActionTypeLeft = 1 << 2,
ActionTypeRight = 1 << 3
};
NSCache
是苹果提供的一个专门用来做缓存的类NSMutableDictionary
非常相似不足
的时候,会自动清理缓存数量
& 成本
取值
- (id)objectForKey:(id)key;
设置对象,0成本
- (void)setObject:(id)obj forKey:(id)key;
设置对象并指定成本
- (void)setObject:(id)obj forKey:(id)key cost:(NSUInteger)g;
成本示例,以图片为例:
100
张图片10M
,以图片的 宽 * 高
当作成本,图像像素
。这样,无论缓存的多少张照片,只要像素值超过 10M,就会自动清理删除
- (void)removeObjectForKey:(id)key;
删除全部(不要使用!)
- (void)removeAllObjects;
@property NSUInteger totalCostLimit;
@property NSUInteger countLimit;
@property BOOL evictsObjectsWithDiscardedContent;
YES
@property (nonatomic, strong) NSCache *cache;
- (NSCache *)cache {
if (_cache == nil) {
_cache = [[NSCache alloc] init];
_cache.delegate = self;
_cache.countLimit = 10;
}
return _cache;
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
for (int i = 0; i < 20; ++i) {
NSString *str = [NSString stringWithFormat:@"%d", i];
NSLog(@"set -> %@", str);
[self.cache setObject:str forKey:@(i)];
NSLog(@"set -> %@ over", str);
}
// 遍历缓存
NSLog(@"------");
for (int i = 0; i < 20; ++i) {
NSLog(@"%@", [self.cache objectForKey:@(i)]);
}
}
// 代理方法,仅供观察使用,开发时不建议重写此方法
- (void)cache:(NSCache *)cache willEvictObject:(id)obj {
NSLog(@"remove -> %@", obj);
}
.h
中,以便后续测试/// 图像缓冲池
@property (nonatomic, strong) NSCache *imageCache;
- (NSCache *)imageCache {
if (_imageCache == nil) {
_imageCache = [[NSCache alloc] init];
_imageCache.countLimit = 15;
}
return _imageCache;
}
修改其他几处代码,将 self.imageCache[URLString]
替换为 [self.imageCache setObject:image forKey:URLString];
测试缓存中的图片变化
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
for (AppInfo *app in self.appList) {
NSLog(@"%@ %@", [[DownloadImageManager sharedManager].imageCache objectForKey:app.icon], app.name);
}
}
- (instancetype)init
{
self = [super init];
if (self) {
// 注册通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(clearMemory) name:UIApplicationDidReceiveMemoryWarningNotification object:nil];
}
return self;
}
// 提示:虽然执行不到,但是写了也无所谓
- (void)dealloc {
// 删除通知
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)clearMemory {
NSLog(@"%s", __FUNCTION__);
// 取消所有下载操作
[self.downloadQueue cancelAllOperations];
// 删除缓冲池
[self.operationChache removeAllObjects];
}
注意:内存警告或者超出限制后,缓存中的任何对象,都有可能被清理。使用 NSCache 做缓存一定要保证能够有恢复的通道!
标签:sdwebimage
原文地址:http://blog.csdn.net/jiahao8915/article/details/47692087