I have a issue while doing some encoding with the string. It returns all the values in CAPS.
I want it to be small. Is there any api available in objective C to convert the caps in the NSString into small alphabet?
I have a issue while doing some encoding with the string. It returns all
Share
If you want it all lower case you can do
[myString lowercaseString];If you want it capitalized use
[myString capitalizedString];See Apple’s Docs on NSString