SBJson 3.0.4
|
Parse JSON Strings and NSData objects. More...
Inherits NSObject.
List of all members.
Public Member Functions |
|
(id) | - objectWithData: |
Return the object represented by the given NSData object. |
|
(id) | - objectWithString: |
Return the object represented by the given string. |
|
(id) | - objectWithString:error: |
Return the object represented by the given string. |
|
Properties |
|
NSUInteger | maxDepth |
The maximum recursing depth. |
|
NSString * | error |
Description of parse error. |
This uses SBJsonStreamParser internally.
- (id) objectWithData: | (NSData*) | data |
The data must be UTF8 encoded.
data | An NSData containing UTF8 encoded data to parse. |
- (id) objectWithString: | (NSString *) | repr |
This method converts its input to an NSData object containing UTF8 and calls -objectWithData: with it.
- (id) objectWithString: | (NSString*) | jsonText | |
error: | (NSError**) | error | |
This method calls objectWithString: internally. If an error occurs, and if error
is not nil, it creates an NSError object and returns this through its second argument.
jsonText | the json string to parse |
error | pointer to an NSError object to populate on error |
- (NSString *) error [read, write, copy]
|
This method returns the trace of the last method that failed. You need to check the return value of the call you're making to figure out if the call actually failed, before you know call this method.
- (NSUInteger) maxDepth [read, write, assign]
|
Defaults to 32. If the input is nested deeper than this the input will be deemed to be malicious and the parser returns nil, signalling an error. ("Nested too deep".) You can turn off this security feature by setting the maxDepth value to 0.