0

我正在为我的 iphone 应用程序创建联系人列表。我制作了一个包含以下属性的自定义对象类。

  • ID

现在我想制作一个联系人列表,就像 iphone 的联系人列表一样。所以使用 ABCDE-... 作为 tableview 部分的标题。我正在关注本教程。但他只是在处理弦乐。我的问题在于 CellForRow 内。在这里你可以看到我有什么 ATM。

   NSString *alphabet = [firstIndex objectAtIndex:[indexPath section]];

//---get all states beginning with the letter---
NSPredicate *predicate =
[NSPredicate predicateWithFormat:@"SELF beginswith[c] %@", alphabet];
NSLog(@"list content is here %@",[listContent valueForKey:@"name"]);
NSArray *contacts = [[listContent valueForKey:@"name"] filteredArrayUsingPredicate:predicate];
NSLog(@"Contacts array is %@",contacts);

    Contact *contact = nil;
    contact = [contacts objectAtIndex:[indexPath row]];
    NSLog(@"contact is in de else %@",contact.name);
    NSString *text = [NSString stringWithFormat:@"%@ %@",contact.name,contact.firstName];
    cell.textLabel.text = text;


   [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];

我使用以下日志在第一行崩溃

2013-02-07 10:52:47.963 Offitel2[7807:907] list content is here (
    Claes,
    Geelen,
    Verheyen
)
2013-02-07 10:52:47.964 Offitel2[7807:907] Contacts array is (
    Claes
)
2013-02-07 10:52:47.964 Offitel2[7807:907] -[__NSCFString name]: unrecognized selector sent to instance 0x208e2c20
2013-02-07 10:52:47.965 Offitel2[7807:907] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFString name]: unrecognized selector sent to instance 0x208e2c20'

有人可以帮我吗?

亲切的问候

4

1 回答 1

3

跟着这些步骤:

  • 使用您要填充的单词的所有起始字母创建一个索引字母数组
  • 现在排序:

    //sorting for english language
    indexAlphabetArray = (NSMutableArray *)[indexAlphabetArray sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
    
  • 现在实施

    -(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
    {
        return indexAlphabetArray;
    }
    
  • 最后的建议,将所有名称和组名的字典作为字典中的键,例如:

    nameDictionary:{
        A:(
           Astart,
           Astop,
         )
        b:(
           bstart,
           bstop,
         )
    }
    
  • 这样indexAlphabetArray = [nameDictionary allKeys];

编辑:让您更轻松:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [[nameDictionary valueForKey:[indexAlphabetArray objectAtIndex:section]] count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *kCellID = @"cellID";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellID];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kCellID];
    }
    NSArray *nameArray = [nameDictionary valueForKey:[indexAlphabetArray objectAtIndex:indexPath.section]];
    cell.textLabel.text = [nameArray objectAtIndex:indexPath.row];
    return cell;    
}
于 2013-02-07T10:09:43.537 回答