老师,我用的xcode7.0 swift2.0。跟着视频学习中出现以下错误
在获取textFiled中的值时,
var year: Int? = Int(yearOfBirth.text!)
给出了这个警告:
Initialization of immutable value 'year' was never used; consider replacing with assignment to '_' or removing it
================
解决办法是:
将year作为类的属性进行声明,然后在okTapped方法中赋值,就正确了,但不知道为什么Xcode7 swift中需要这么做?