I have a NSJSONSerialization JSONObjectWithData where I pass a NSData object. As a result I get a NSString instead of an NSDictionary. The complete line I have is:
NSDictionary* jsonDec = [NSJSONSerialization JSONObjectWithData:jData options:NSJSONReadingAllowFragments error:&error];
And the return is:
Why don't I get a NSDictionary back? My backend is PHP on the server...
Thanks in advance!