Three20 titleForHeaderInSection
Here is what I added. It just lists all the objectsForCharacters under each one of the alphabet characters.
- (void)tableViewDidLoadModel:(UITableView*)tableView {
items = [[NSMutableArray alloc] init];
arrayOfCharacters = [[NSMutableArray alloc]init];
objectsForCharacters = [[NSMutableDictionary alloc]init];
NSMutableArray *arrayOfNames = [[NSMutableArray alloc]init];
for (Kid_CareAppDelegate_City* post in _searchFeedModel.posts) {
[arrayOfNames addObject:post.city];
[items addObject:[TTTableTextItem itemWithText:post.city
URL:[NSString stringWithFormat:@"tt://city?to=%@",[post.city stringByReplacingOccurrencesOfString:@" " withString:@"+"]]]];
}
for(char c='A';c<='Z';c++){
[arrayOfCharacters addObject:[NSString stringWithFormat:@"%c",c]];
[objectsForCharacters setObject:arrayOfNames forKey:[NSString stringWithFormat:@"%c",c]];
}
NSLog(@"Array %@",arrayOfCharacters);
NSLog(@"Dict %@",objectsForCharacters);
TT_REL开发者_开发百科EASE_SAFELY(arrayOfNames);
self.items = items;
TT_RELEASE_SAFELY(items);
}
you can check out the link.http://blog.webscale.co.in/?p=240
精彩评论