11

我想返回NSString大写字母的第一个字母。我有一个UISearchDisplayController根据搜索结果的标题显示部分标题。

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    NSString *sectionTitle;
    if (searching) 
        sectionTitle = [searchSectionTitles objectAtIndex:section];
    else
        sectionTitle = [[collation sectionTitles] objectAtIndex:section];

    return sectionTitle;

}

并在我的搜索功能中返回这封信,

[searchSectionTitles addObject:[lastName firstLetter]];

我该怎么做

- (NSString *)firstLetter

返回 a 的第一个字母NSString

4

2 回答 2

39

下面的代码将大写字符串的首字母,在这种情况下,首字母大写的字符串称为 sectionTitle

NSString *firstLetter = [[sectionTitle substringToIndex:1];

firstLetter = [firstLetter uppercaseString];
于 2012-08-10T02:51:52.033 回答
2

用于[yourString substringToIndex:1]获取第一个字母

于 2012-08-10T02:47:32.743 回答