is there any way to put out the alphabet in iOS?
I want to populate a table with all the letters of an alphabet.
And also other alphabets.
Any suggestion to do that without any extensions or smth. else ??
If any way to do so with an extension, please let me know :)
Edit 1:
Thank you Carlos Chiari, here is my solution:
int asciiCode = 65;
for (asciiCode=65; asciiCode<=90; asciiCode++) {
NSString *string = [NSString stringWithFormat:@"%c", asciiCode];
NSLog(@"%@", string);
}
found here and just putted in a for condition: How to convert ASCII value to a character in Objective-C?