我正在构建一个以字典数组为源的 UITableView。每个字典都有一个字母作为键,一个联系人数组作为值,例如:键“A” - 值“Adam, Alex, Andreas”。我现在的问题是我无法获得每个部分的正确行数或部分标题......顺便说一下,我是 Objective-C 的新手,所以如果我的问题看起来很奇怪,我很抱歉。一些指导将不胜感激!
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
//tableContent is my array of dictionaries
return [self.tableContent count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
//here I don't know how to get the dictionary value array length that would be the
//the number of contacts per letter
return ?
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
//here I don't know how to get the dictionary key to set as section title
retrun ?
}