How to extract individual characters from a string object in Objective-C ?
Example:
NSString * fooString = [NSString stringWithFormat:@
you can also use [NSString getCharacters:(unichar array) range:(nsrange)]; you will get an easy to manipulate array.I needed it my self and found it on this link
[NSString getCharacters:(unichar array) range:(nsrange)];