Post

Replies

Boosts

Views

Activity

Reply to - [NSUserDefault setObject:forKey:] cause random crash only on iOS 11.
We used a third-party SDK in our application. The method +[UMConfigureCache setObject:forKey:] from that third-party SDK. The logic of the method +[UMConfigureCache setObject:forKey:] looks like the following: if ((value != nil) && [UMUtils notEmptyString:key]) { 				NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; 				[defaults setObject:value forKey:key]; 				[defaults synchronize]; }
Jun ’20