We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider:
NSString *testJSON = @"{ \"id\" : 20023767592 }"; SBJsonParser *parser = [[SBJsonParser alloc] init]; NSError *err = nil; NSDictionary *parsedDictionary = (NSDictionary *)[parser objectWithString:testJSON error:err];
The dictionary parsedDictionary will have a value of 2147483647 for the id.
The text was updated successfully, but these errors were encountered:
Hi,
I ran into this same issue today. You had posted this issue about 30 mins before I came here todo the same.
I have submitted a fix for this: #65
Sorry, something went wrong.
60703d8
fix for longs not correctly decoded
b8ea965
see: SBJson#64
No branches or pull requests
Consider:
The dictionary parsedDictionary will have a value of 2147483647 for the id.
The text was updated successfully, but these errors were encountered: