iOS initializer element is not a
2018-05-28 本文已影响135人
iOS安年
初始化全局变量或static变量时,不能用变量赋值,只能用常量赋值。
// 正确
static NSInteger const kSpace = 2;
// 错误
static NSInteger const kSpace = 2 * kWCScreenSize;
初始化全局变量或static变量时,不能用变量赋值,只能用常量赋值。
// 正确
static NSInteger const kSpace = 2;
// 错误
static NSInteger const kSpace = 2 * kWCScreenSize;