我要粘贴下面的代码,然后告诉你我试图从代码中确定的内容。
如果您正在快速阅读此内容,请从下一个代码块正上方的文本开始。
- (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
,但除此之外我还不确定如何开始?
答案 0 :(得分:2)
-tableViewDidLoadModel:
是一种来自TTTableViewDataSource协议的方法,因此,如果您尝试从项目中删除Three20,那么除了替换TTTableItem之外,您还有更多工作要做。
TTTableItem是NSObject的子类,它似乎唯一添加的是userInfo
属性。要摆脱它,你可以从创建自己的具有相同属性的类开始。