问题描述:Xcode对如下代码
result= point1
报如下错误
Prefix/postfix '=' is reserved
问题解决:Swift对=前后有空格会认为是保留运算附,改为
result=point1
问题描述:Xcode对如下代码
result= point1
报如下错误
Prefix/postfix '=' is reserved
问题解决:Swift对=前后有空格会认为是保留运算附,改为
result=point1
问题描述:最近在用Swift了,使用CALayer,报如下错误
Use of module 'CALayer' as a type
问题解决:
添加引用:import QuartzCore
报错估计是一个bug
PS:Xcode6.0 beta1