summaryrefslogtreecommitdiffstats
path: root/Classes/SectionDictionary.h
diff options
context:
space:
mode:
authormatt handler <matt.handler@gmail.com>2011-04-27 18:45:32 -0400
committermatt handler <matt.handler@gmail.com>2011-04-27 18:45:32 -0400
commite788dbb246a2c9673d595420beca061123526d50 (patch)
tree70fbbee15ffdaef04c6b7afee40c2964e41fbcac /Classes/SectionDictionary.h
parente6eb634beac831e64becc03928a467701f9625cf (diff)
downloadpiccast-app-e788dbb246a2c9673d595420beca061123526d50.tar.gz
piccast-app-e788dbb246a2c9673d595420beca061123526d50.zip
sorting automatically, load more button, remove some logging, customizing things?
Diffstat (limited to 'Classes/SectionDictionary.h')
-rw-r--r--Classes/SectionDictionary.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Classes/SectionDictionary.h b/Classes/SectionDictionary.h
index f227e44..b4dd6b0 100644
--- a/Classes/SectionDictionary.h
+++ b/Classes/SectionDictionary.h
@@ -12,12 +12,15 @@
@interface SectionDictionary : NSObject {
NSInteger index;
NSMutableDictionary *indexMap;
+ NSMutableArray *sortedKeys;
NSMutableDictionary *theRealDictionary;
}
- (void) appendObject:(id)anObject forKey:(id)aKey;
- (void) setObject:(id)anObject forKey:(id)aKey;
- (id) objectForIndex:(NSInteger)i;
+- (void) sortKeys;
- (NSString *) keyForIndex:(NSInteger)i;
+- (NSArray *) allIndices;
@end