Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Is there an Obj-C function to uppercase the first char and lowercase the other ones ?
Thanks for your advices
Yes indeed:
[myString capitalizedString];
(Note that this will capitalize each word in a sentence (ie 'hello there' -> 'Hello There') aka 'Title Case')