home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////
- // DictionaryTable
- // by Charles Lloyd
- ////////////////////////
-
-
- ///////////////////
- // User Options
- ///////////////////
- id dictionary;
- id borderSize;
- id cellPadding;
- id cellSpacing;
-
- id currentKey;
-
- - awake
- {
- dictionary = [[@{
- "Key 1" = "Value 1";
- "Key 2" = "Value 2";
- "Key 3" = "Value 3";
- } mutableCopy] autorelease];
- borderSize = 1;
- cellSpacing = 0;
- cellPadding = 2;
- }
-
- - allKeys
- {
- return [dictionary allKeys];
- }
-
- - currentValue
- {
- return [dictionary objectForKey:currentKey];
- }
-