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
I'm getting EXC_BAD_ACCESS (code=EXC_I368_GPFLT) when trying to convert dictionary that contains NSNumber in method called jk_encode_add_atom_to_buffer in the following line void *objectISA = (JK_EXPECT_F(workAroundMacOSXABIBreakingBug)) ? NULL : *((void **)objectPtr);
here is sample code i tried NSDictionary *dict = @{@"StringKey":@"Value", @"NumberKey" : @5}; NSString* reqString = [dict JSONStringWithOptions:JKSerializeOptionNone error:&jsonError];
is there is any hint why I'm getting this error?
The text was updated successfully, but these errors were encountered:
I'm getting EXC_BAD_ACCESS (code=EXC_I368_GPFLT) when trying to convert dictionary that contains NSNumber in method called
jk_encode_add_atom_to_buffer
in the following linevoid *objectISA = (JK_EXPECT_F(workAroundMacOSXABIBreakingBug)) ? NULL : *((void **)objectPtr);
here is sample code i tried
NSDictionary *dict = @{@"StringKey":@"Value", @"NumberKey" : @5}; NSString* reqString = [dict JSONStringWithOptions:JKSerializeOptionNone error:&jsonError];
is there is any hint why I'm getting this error?
The text was updated successfully, but these errors were encountered: