There is a method called lowercaseString on NSString. 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!"