有人可以向我解释一下这里发生了什么吗?



我将粘贴下面的代码,然后告诉你我试图从代码中确定的内容。

如果您正在快速阅读本文,请从下一个代码块正上方的文本开始。

- (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,但除此之外,我真的不确定如何开始?

-tableViewDidLoadModel:是一种来自TTTableViewDataSource协议的方法,因此,如果您尝试从项目中删除Three20,则除了替换TTTableItem之外,您还有更多的事情要做。

TTTableItem 是 NSObject 的一个子类,它似乎唯一添加的是 userInfo 属性。要摆脱它,您可以从使用相同的属性创建自己的类开始。

相关内容

  • 没有找到相关文章

最新更新