发布于 2015-11-25 21:57:36 | 270 次阅读 | 评论: 1 | 来源: PHPERZ
Swift编程语言
SWIFT,苹果于2014年WWDC(苹果开发者大会)发布的新开发语言,可与Objective-C*共同运行于Mac OS和iOS平台,用于搭建基于苹果平台的应用程序。
在xcode6.1中来编写swift空数组时,出现的的这个问题,按照官方 Swift 教程《The Swift Programming Language》来写
let emptyArray = String[]() 时会提示“Array types are now written with the brackets around the element type”错误
let emptyArray = [String]() 其它类型类似来处理即可