八八九九

Results 4 issues of 八八九九

`"_OBJC_CLASS_$_JSContext", referenced from:` I look at the JSContext.h file there are defined.

修复Xcode16编译引起的闪退,在 iOS18 中,需要提前对 sqlite3_stmt 执行 sqlite3_finalize ```objective-c @implementation YYKVStorage - (BOOL)_dbClose { ... // 原代码 if (_dbStmtCache) CFRelease(_dbStmtCache); // 替换为 if (_dbStmtCache) { CFIndex size = CFDictionaryGetCount(_dbStmtCache); CFTypeRef *valuesRef =...