Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a textfield in my iOS app where the user is supposed to input some text. But I was wondering if there is any way to convert the users input to lower case letters?

I remember in C# it was something like Convert.ToLower but I can't seem to figure out how to do it in Objective-c

share|improve this question
3  
-1, you should really have googled this. What a shame. – H2CO3 Jan 29 at 22:11

1 Answer

up vote 48 down vote accepted

There is a method called lowercaseString on NSString... Did you even Google it? NSString contains plenty of methods for string manipulation, please read the documentation.

NSString *myString = @"Hello, World!";
NSString *lower = [myString lowercaseString]; // this will be "hello, world!"
share|improve this answer
6  
I googled it -- and this page was at the top of the hit list. – Basil Bourque Dec 12 '12 at 5:53
8  
I don't understand the smug suggestions to read the documentation. I'm much prefer a single question and answer like this, rather than 20,000 words of Applese technical documentation. It's a fair question and a good answer. – Mick Byrne Feb 16 at 5:07
So ironic the guy who wrote this "smug" answer got the most +1 from this, hehe. – WingYn Apr 23 at 10:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.