For example: NSString *strWord = "english";
The result NSArray would be something like: e n g l i s h
I think is possible to do it with
[NSString componentSeparatedByCharacter:somecharacter], but I don't know what that character is...
I wrote something like this to extract the character:
NSString *character;
for (int i=0; i<[strWord length]; i++) {
character = [strWord substringWithRange:NSMakeRange(i, 1)];
}
Thanks for the help!