I've struggled and failed for over ten minutes here and I give in. I need to convert an Int to a Character in Swift and cannot solve it.
Question
How do you convert (cast) an Int
(integer) to a Character
(char) in Swift?
Illustrative Problem/Task Challenge
Generate a for loop which prints the letters 'A' through 'Z', e.g. something like this:
for(var i:Int=0;i<26;i++) { //Important to note - I know
print(Character('A' + i)); //this is horrendous syntax...
} //just trying to illustrate! :)
Character(UnicodeScalar(i + startingValue)!)
– Paleozoic