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

Instance Methods

parser:foundBoolean:

Called when a boolean value is found

- (void)parser:(SBJsonStreamParser *)parser foundBoolean:(BOOL)x

Discussion

Called when a boolean value is found

Declared In

SBJsonStreamParser.h

parser:foundNumber:

Called when a number is found

- (void)parser:(SBJsonStreamParser *)parser foundNumber:(NSNumber *)num

Discussion

Called when a number is found

Declared In

SBJsonStreamParser.h

parser:foundObjectKey:

Called when object key is found

- (void)parser:(SBJsonStreamParser *)parser foundObjectKey:(NSString *)key

Discussion

Called when object key is found

Declared In

SBJsonStreamParser.h

parser:foundString:

Called when a string is found

- (void)parser:(SBJsonStreamParser *)parser foundString:(NSString *)string

Discussion

Called when a string is found

Declared In

SBJsonStreamParser.h

parserFoundArrayEnd:

Called when array end is found

- (void)parserFoundArrayEnd:(SBJsonStreamParser *)parser

Discussion

Called when array end is found

Declared In

SBJsonStreamParser.h

parserFoundArrayStart:

Called when array start is found

- (void)parserFoundArrayStart:(SBJsonStreamParser *)parser

Discussion

Called when array start is found

Declared In

SBJsonStreamParser.h

parserFoundNull:

Called when a null value is found

- (void)parserFoundNull:(SBJsonStreamParser *)parser

Discussion

Called when a null value is found

Declared In

SBJsonStreamParser.h

parserFoundObjectEnd:

Called when object end is found

- (void)parserFoundObjectEnd:(SBJsonStreamParser *)parser

Discussion

Called when object end is found

Declared In

SBJsonStreamParser.h

parserFoundObjectStart:

Called when object start is found

- (void)parserFoundObjectStart:(SBJsonStreamParser *)parser

Discussion

Called when object start is found

Declared In

SBJsonStreamParser.h