我将粘贴下面的代码,然后告诉你我试图从代码中确定什么。
如果您正在快速阅读本文,请从下一个代码块正上方的文本开始。
- (void)tableViewDidLoadModel:(UITableView*)tableView {
self.items = [NSMutableArray array];
self.sections = [NSMutableArray array];
NSMutableDictionary *groups = [NSMutableDictionary dictionary];
for (int c = 0;c < [_contacts.people count];c++) {
NSDictionary *person = [_contacts.people objectAtIndex:c];
NSString *name = [person objectForKey:@"fullName"];
NSString *letter = [name substringToIndex:1];
NSMutableArray *section = [groups objectForKey:letter];
NSLog(@"%@ - %@ - %@", name, [person objectForKey:@"index"], [person objectForKey:@"abId"]);
if (!section) {
section = [NSMutableArray array];
[groups setObject:section forKey:letter];
}
TTTableItem *item = [ttItem itemWithText:name URL:[person objectForKey:@"index"]];
[section addObject:item];
}
其他人编写了这段代码。据我所知,他们正在尝试获取用户的联系人并填写TableView
.
现在我真正的问题与最后一行有关:
TTTableItem *item = [ttItem itemWithText:name URL:[person objectForKey:@"index"]];
[section addObject:item];
这是使用 Three20 框架。显然,以前的开发人员所做的是用来TTTableItem
获得一个预先格式化的UITableViewCell
. (希望我想对了吗?)我需要用正常的代码替换这行代码。我想过只使用UITableViewCell
,但除此之外我不确定如何开始?