I've used this in several projects...
[NSJSONSerialization dataWithJSONObject:someObject options:0 error:nil]
but I don't know how to specify no options
. This is both for reading and writing.
I saw an example somewhere where the person had used a constant value instead of just 0
but I can't find it.
Is there a way to properly specify no options?
AppCode displays a warning if I use the above code.