nathanday / ndjson

Objective-C JSON parser
1 stars 0 forks source link

NSDecimalNumber support #74

Open nathanday opened 11 years ago

nathanday commented 11 years ago

Need to be able to handle numbers greater than platforms largest integer or float size, also maybe add more options for getting integers and floats, the code uses a long long to parse the number but the delegate method handles a NSInteger or a NSNumber, NSInteger on iOS is only 32bits, could perhaps add a method to handle long long, or maybe change the current NSInteger to handle long long?