码迷,mamicode.com
首页 > 其他好文 > 详细

Array types are now written with the brackets around the element type问题的解决方法

时间:2014-11-03 17:48:41      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   sp   on   问题   line   size   as   

在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]() 其它类型类似来处理即可

Array types are now written with the brackets around the element type问题的解决方法

标签:style   color   ar   sp   on   问题   line   size   as   

原文地址:http://blog.csdn.net/quanqinyang/article/details/40743507

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!