How to make first letter uppercase in a UILabel?

IosObjective CSwiftCocoa TouchNsstring

Ios Problem Overview


I'm developing an iPhone app. In a label, I want to show an user's first letter of the name uppercase. How do I do that?

Ios Solutions


Solution 1 - Ios

If there is only one word String, then use the method

-capitalized

let capitalizedString = myStr.capitalized // capitalizes every word

Otherwise, for multi word strings, you have to extract first character and make only that character upper case.

Solution 2 - Ios

(2014-07-24: Currently accepted answer is not correct) The question is very specific: Make the first letter uppercase, leave the rest lowercase. Using capitalizedString produces a different result: “Capitalized String” instead of “Capitalized string”. There is another variant depending on the locale, which is capitalizedStringWithLocale, but it's not correct for spanish, right now it's using the same rules as in english, so this is how I'm doing it for spanish:

NSString *abc = @"this is test";

abc = [NSString stringWithFormat:@"%@%@",[[abc substringToIndex:1] uppercaseString],[abc substringFromIndex:1] ];       
NSLog(@"abc = %@",abc);

Solution 3 - Ios

In case someone is still interested in 2016, here is a Swift 3 extension:

extension String {
    func capitalizedFirst() -> String {
        let first = self[self.startIndex ..< self.index(startIndex, offsetBy: 1)]
        let rest = self[self.index(startIndex, offsetBy: 1) ..< self.endIndex]
        return first.uppercased() + rest.lowercased()
    }
    
    func capitalizedFirst(with: Locale?) -> String {
        let first = self[self.startIndex ..< self.index(startIndex, offsetBy: 1)]
        let rest = self[self.index(startIndex, offsetBy: 1) ..< self.endIndex]
        return first.uppercased(with: with) + rest.lowercased(with: with)
    }
}

Then you use it exactly as you would for the usual uppercased() or capitalized():

myString.capitalizedFirst() or myString.capitalizedFirst(with: Locale.current)

Solution 4 - Ios

This is for your NSString+Util category...

- (NSString *) capitalizedFirstLetter {
    NSString *retVal;
    if (self.length < 2) {
        retVal = self.capitalizedString;
    } else {
        retVal = string(@"%@%@",[[self substringToIndex:1] uppercaseString],[self substringFromIndex:1]);
    }
    return retVal;
}

You can do that with NSString stringWithFormat, of course. I use this weirdness:

#define string(...) \
[NSString stringWithFormat:__VA_ARGS__]

Solution 5 - Ios

Simply

- (NSString *)capitalizeFirstLetterOnlyOfString:(NSString *)string{
     NSMutableString *result = [string lowercaseString].mutableCopy;
     [result replaceCharactersInRange:NSMakeRange(0, 1) withString:[[result substringToIndex:1] capitalizedString]];

     return result;
}

Solution 6 - Ios

As an extension to the accepted answer

capitalizedString is used for making uppercase letters .

NSString *capitalizedString = [myStr capitalizedString]; // capitalizes every word

But if you have many words in a string and wants to get only first character as upper case use the below solution

NSString *firstCapitalChar = [[string substringToIndex:1] capitalizedString];
NSString *capString = [string stringByReplacingCharactersInRange:NSMakeRange(0,1) withString: capString];
// extract first character and make only that character upper case.

Solution 7 - Ios

here's a swift extension for it

extension NSString {
    func capitalizeFirstLetter() -> NSString {
        return self.length > 1 ?
          self.substringToIndex(1).capitalizedString + self.substringFromIndex(1) :
          self.capitalizedString
    }
}

Solution 8 - Ios

This is how it worked for me:

NSString *serverString = jsonObject[@"info"];

NSMutableString *textToDisplay = [NSMutableString stringWithFormat:@"%@", serverString];
        
[textToDisplay replaceCharactersInRange:NSMakeRange(0, 1) withString:[textToDisplay substringToIndex:1].capitalizedString];
        
cell.infoLabel.text = textToDisplay;

Hope it helps.

Solution 9 - Ios

Swift:

let userName = "hard CODE"
yourLabel.text = userName.localizedUppercaseString

I recommend using this localised version of uppercase, since names are locale sensitive.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHardCodeView Question on Stackoverflow
Solution 1 - IosberylliumView Answer on Stackoverflow
Solution 2 - IosJosé Manuel SánchezView Answer on Stackoverflow
Solution 3 - IoswinterizedView Answer on Stackoverflow
Solution 4 - IosDan RosenstarkView Answer on Stackoverflow
Solution 5 - IosAmr LotfyView Answer on Stackoverflow
Solution 6 - IosSuraj K ThomasView Answer on Stackoverflow
Solution 7 - Ioscalql8edkosView Answer on Stackoverflow
Solution 8 - IosppalancicaView Answer on Stackoverflow
Solution 9 - IosJuan BoeroView Answer on Stackoverflow