I have found a few ways to parse JSON
in Objective-C
:
Both of these methods work great, however my only problem is that when an error occurs, I would like more details than the error message. Specifically, I would like to know the line number and column that the error occurs on (both SBJSON and NSJSONSerialization do return errors, however the errors seem to only contain a Message with no more details).
Any suggestions on how I can get more details on the error that occurs when processing JSON
?