SBJsonStreamParserDelegate Protocol Reference
Declared in | SBJsonStreamParser.h |
Overview
Delegate for interacting directly with the stream parser
You will most likely find it much more convenient to implement the SBJsonStreamParserAdapterDelegate protocol instead.
Tasks
-
– parserFoundObjectStart:
Called when object start is found
required method -
– parser:foundObjectKey:
Called when object key is found
required method -
– parserFoundObjectEnd:
Called when object end is found
required method -
– parserFoundArrayStart:
Called when array start is found
required method -
– parserFoundArrayEnd:
Called when array end is found
required method -
– parser:foundBoolean:
Called when a boolean value is found
required method -
– parserFoundNull:
Called when a null value is found
required method -
– parser:foundNumber:
Called when a number is found
required method -
– parser:foundString:
Called when a string is found
required method
Instance Methods
parser:foundBoolean:
Called when a boolean value is found
- (void)parser:(SBJsonStreamParser *)parser foundBoolean:(BOOL)x
Declared In
SBJsonStreamParser.h
parser:foundNumber:
Called when a number is found
- (void)parser:(SBJsonStreamParser *)parser foundNumber:(NSNumber *)num
Declared In
SBJsonStreamParser.h
parser:foundObjectKey:
Called when object key is found
- (void)parser:(SBJsonStreamParser *)parser foundObjectKey:(NSString *)key
Declared In
SBJsonStreamParser.h
parser:foundString:
Called when a string is found
- (void)parser:(SBJsonStreamParser *)parser foundString:(NSString *)string
Declared In
SBJsonStreamParser.h
parserFoundArrayEnd:
Called when array end is found
- (void)parserFoundArrayEnd:(SBJsonStreamParser *)parser
Declared In
SBJsonStreamParser.h
parserFoundArrayStart:
Called when array start is found
- (void)parserFoundArrayStart:(SBJsonStreamParser *)parser
Declared In
SBJsonStreamParser.h
parserFoundNull:
Called when a null value is found
- (void)parserFoundNull:(SBJsonStreamParser *)parser
Declared In
SBJsonStreamParser.h