-
来自 @政-打杂倒水-广州iOS :
说到YYCache。里面有一处过渡优化的
就是在释放menory cache的时候,它使用了子线程去释放。一般使用是没问题的。但是到了极端的情况下,CPU被拉满,子线程永远没有机会调用,然后主线程还一直往里面塞,最后内存爆炸被杀
当你们在一个页面大量使用webp的时候,就要留意了
在低端机比较容易出现,上下刷新的时候,容易出现
webp是一种新的…
-
http://isylar.com/2018/01/26/YYCacheLearn/
-
YYCache *cache = [[YYCache alloc]initWithName: CacheKeyUserManager];
[cache setObject:_strServerIP forKey: KeyStrServerIP];
你好,我想咨询一下,这种方式创建保存数据 部分手机型号的反馈会自动清除。
-
我通过命令pod 'ReactiveCocoa', '~> 2.5'' 导入这个框架,遇到Duplicate interface definition for class 'YYCache',在这个代码处(@property (copy, readonly) NSString *name;
)报Property has a previous declaration,没导入之前是好好的,导入后就遇…
-
修复Xcode16编译引起的闪退,在 iOS18 中,需要提前对 sqlite3_stmt 执行 sqlite3_finalize
```objective-c
@implementation YYKVStorage
- (BOOL)_dbClose {
...
// 原代码
if (_dbStmtCache) CFRelease(_dbStmtCache);
…
-
YYCache 有时候取出内存为空 写入是成功的
-
SGEasyButton这个库pod没有
![image](https://user-images.githubusercontent.com/18342190/96835612-677eed00-1476-11eb-8b56-fd78361159ae.png)
YYCache报错
![image](https://user-images.githubusercontent.com/1834…
-
编译报错了
-
[[YYCache sharedCache] objectForKey:CMHSearchFarmsHistoryCacheKey withBlock 报错
Incompatible block pointer types sending 'void (^)(NSString * _Nonnull __strong, NSArray * _Nullable __strong)' to param…
-
启动大量读取数据,而每次读取数据都会有写数据库的操作,这样容易导致卡死。写入时间到数据库的时机是否可以调整一下