You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like method - (size_t)getValueSizeForKey:(NSString *)key
has been replaced by method - (size_t)getValueSizeForKey:(NSString *)key actualSize:(BOOL)actualSize
Can still provide the old style method ?Because a large number of third-party components are use - (size_t)getValueSizeForKey:(NSString *)key in the project,It would be a huge job to upgrade all the third-party components
The text was updated successfully, but these errors were encountered:
It's long gone and it's unlikely to bring it back.
Luckily for ObjC you can always create a category of existing classes (MMKV) and add whatever methods you like such as the old style getValueSize you prefer.
It looks like method
- (size_t)getValueSizeForKey:(NSString *)key
has been replaced by method
- (size_t)getValueSizeForKey:(NSString *)key actualSize:(BOOL)actualSize
Can still provide the old style method ?Because a large number of third-party components are use
- (size_t)getValueSizeForKey:(NSString *)key
in the project,It would be a huge job to upgrade all the third-party componentsThe text was updated successfully, but these errors were encountered: