Fix the crash when using NSCache delegate with SDMemoryCache default implementation on dealloc

This commit is contained in:
DreamPiggy 2019-12-26 17:55:35 +08:00
parent 6ea9a7640a
commit 9b4e6286fc
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIApplicationDidReceiveMemoryWarningNotification object:nil];
self.delegate = nil;
}
- (instancetype)initWithConfig:(SDImageCacheConfig *)config {