I am getting an array with null value. Please check the structure of my array below:
( \"< null>\" )
When I\'m trying to access
Building off of Toni's answer I made a macro.
#define isNSNull(value) [value isKindOfClass:[NSNull class]]
Then to use it
if (isNSNull(dict[@"key"])) ...