Posted on 2014.Jul.17, 10:28 pm By Jason
Apple seems to be raising the bar on auto correcting code editor UI
From the code in the swift book
let emptyArray = String[]()
Soon after I typed it in, Playground prompted me to use the new syntax – AND FIX IT IN PLACE
A quick click transformed it to
let emptyArray = [String]()
Nice Apple, very nice.
Now if they would also do the Auto “Fix-it” for dictionary declarations 😉
-Jason De Arte
Categories: Swift Tags: code, programmer, swift