I'm starting a new project with SBJson parser, which people seem to recommend as the best on the internet for new iOS projects. I'm having a really strage issue which is that the current methods Stig Brautaset claims you can use on the current release (3.1), seem to be deprecated, or at least thats what my compiler is saying. I cant seem to get either to work:
NSDictionary *dict = [responseString JSONValue];
Which seems to be the most current way to do this or:
NSDictionary *dict = [parser objectWithString:responseString error:&error];
Where parser is a sbjson parser. XCode highlights both of these functions and tells me they are deprecated.
What am I doing wrong here??