EDIT: iOS Version: iOS 10
I am puzzled with following crash report from crashlytics:
CoreFoundation 0x142ea9823 CFStringConvertNSStringEncodingToEncoding + 806
MyApp 0x100d3625c -[MyClass myMethod:] (Myclass.m:100)
Here is the implementation:
NSMutableArray *myActions = [NSMutableArray array];
UNNotificationAction *action = [UNNotificationAction actionWithIdentifier:@"actionId" title:@"title" options:UNNotificationActionOptionNone];
[myActions addObject:action];//Line no. 100
I am not able to see the crash in dev environment but when I deploy the app in AppStore, get the number of crashes reported in the same line [myActions addObject:action];