I have a JSON object that is coming from a webserver.
The log is something like this:
{ \"status\":\"success\", \"Us
I use this:
#define NULL_TO_NIL(obj) ({ __typeof__ (obj) __obj = (obj); __obj == [NSNull null] ? nil : obj; })