如何在具有从DataBase获取内容的UITableView中实现按字母顺序排列的标题

use*_*721 3 sqlite iphone objective-c uitableview

直到现在我已经UITableView通过填充数据库中的内容来实现

通过从sqlite数据库中检索数组

storedContactsArray = [Sqlitefile selectAllContactsFromDB];

所以没有多个部分,节标题和返回storedContactsArray.count行数.

现在我需要在表视图中填充相同的数据,但是按字母顺序在Alpabetical部分中设置数据.

我试过了

alphabetsArray =[[NSMutableArray alloc]initWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",nil];


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [alphabetsArray count];
}

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
      return alphabetsArray;
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
      return [alphabetsArray objectAtIndex:section];
}
Run Code Online (Sandbox Code Playgroud)

需要如下

但是在numberOfRowsInSection的情况下它失败了,因为storedContactsArray最初没有接触

发生错误: -[__NSArrayM objectAtIndex:]: index 25 beyond bounds for empty array

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
  return [[storedContactsArray objectAtIndex:section] count]
}
Run Code Online (Sandbox Code Playgroud)

任何建议使用完整链接请

iDh*_*val 17

要满足您的要求,您需要先将所有数据分成"按字母顺序排列"部分.如下.

这里是一个Mutable Dictionary,我们将把所有数据作为字母集.

 //Inside ViewDidLoad Method

 sections = [[NSMutableDictionary alloc] init]; ///Global Object

 BOOL found;

for (NSString *temp in arrayYourData)
{        
    NSString *c = [temp substringToIndex:1];

    found = NO;

    for (NSString *str in [sections allKeys])
    {
        if ([str isEqualToString:c])
        {
            found = YES;
        }
    }

    if (!found)
    {     
        [sections setValue:[[NSMutableArray alloc] init] forKey:c];
    }
}
for (NSString *temp in arrayYourData)
{
    [[sections objectForKey:[temp substringToIndex:1]] addObject:temp];
}



-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [[sections allKeys]count];
}


-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [[sections valueForKey:[[[sections allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] objectAtIndex:section]] count];
}


-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
      static NSString* CellIdentifier = @"Cell";
      UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
     if(cell == Nil)
     {
           cell  = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
     }
     NSString *titleText = [[sections valueForKey:[[[sections allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] objectAtIndex:indexPath.section]] objectAtIndex:indexPath.row];
     cell.textLabel.text = titleText;
     return cell;
 }
Run Code Online (Sandbox Code Playgroud)

请试一试我正在使用它并且工作正常希望它可以帮助你!!!