我想知道如何让不同的大小写字母进入相同的部分...

我将解析后的数据传递给采用数组的自定义方法,并按如下所示创建节字母。.我只是不确定如何制作它,以便大写字母和非大写字母出现在同一节中,并希望一些帮助。

//method to sort array and split for use with uitableview Index
- (IBAction)startSortingTheArray:(NSArray *)arrayData
{
     //If you want the standard array use this code
    sortedArray = arrayData;

    self.letterDictionary = [NSMutableDictionary dictionary];
    sectionLetterArray = [[NSMutableArray alloc] init];

    //Index scrolling Iterate over values for future use
    for (NSString *value in sortedArray)
    {
        // Get the first letter and its associated array from the dictionary.
        // If the dictionary does not exist create one and associate it with the letter.
        NSString *firstLetter = [value substringWithRange:NSMakeRange(0, 1)];

        NSMutableArray *arrayForLetter = [letterDictionary objectForKey:firstLetter];
        if (arrayForLetter == nil)
        {
            arrayForLetter = [NSMutableArray array];
            [letterDictionary setObject:arrayForLetter forKey:firstLetter];
            [sectionLetterArray addObject:firstLetter]; // This will be used to set index scroller and section titles
        }
        // Add the value to the array for this letter
        [arrayForLetter addObject:value];
    }
    //Reload data in table
    [self.tableView reloadData];
}


这就是atm的样子。

最佳答案

最简单的解决方案是始终仅存储首字母的大写(或小写)版本。因此,您可以执行以下操作:

        NSString *firstLetter = [[value substringWithRange:NSMakeRange(0, 1)] uppercaseString];

09-07 14:24
查看更多