in Obj-C it was possible to iterate through alphabet with:
for (char x=\'A\'; x<=\'Z\'; x++) {
In Swift this isn\'t possible. Any idea h
Updated for Swift 3.0 and higher
let startChar = Unicode.Scalar("A").value let endChar = Unicode.Scalar("Z").value for alphabet in startChar...endChar { if let char = Unicode.Scalar(alphabet) { print(char) } }