I'm trying working with NSMutableArrays that add NSMutableDictionaries - can't get my head around the Search bar yet, so I thought Indexing would be simpler... now I'm stuck on this!
I sort the table at the end like so:
Code:
NSSortDescriptor *descriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
[allThings sortUsingDescriptors:[NSArray arrayWithObjects:descriptor,nil]];
It seems like the easier solution would be to sort this data into sections based on the key @"name", well, the first letter of @"name". Gah, I'm getting too confused by all this.