From 88d3de337a09fcab2439b20f5cb5d76aa0fcf08a Mon Sep 17 00:00:00 2001 From: matt handler Date: Sun, 24 Apr 2011 21:22:27 -0400 Subject: stable state, things load into section dictionary and display... now need to get storage to actually work though --- Classes/SectionDictionary.m | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Classes/SectionDictionary.m') diff --git a/Classes/SectionDictionary.m b/Classes/SectionDictionary.m index 8845b2b..b183725 100644 --- a/Classes/SectionDictionary.m +++ b/Classes/SectionDictionary.m @@ -37,13 +37,16 @@ - (void) appendObject:(id)anObject forKey:(id)aKey { NSMutableArray *store = [theRealDictionary objectForKey:aKey]; if (store == nil) { + [indexMap setObject:aKey forKey:[NSString stringWithFormat:@"%d", index]]; + index++; + NSMutableArray *store = [[[NSMutableArray alloc] init] autorelease]; [store addObject:anObject]; [theRealDictionary setObject:store forKey:aKey]; } else [store addObject:anObject]; - NSLog(@"number of rows: %d", [[theRealDictionary objectForKey:aKey] count]); + //NSLog(@"number of rows: %d", [[theRealDictionary objectForKey:aKey] count]); } - (id) objectForIndex:(NSInteger)i { -- cgit v1.2.3