SwiftStudy icon indicating copy to clipboard operation
SwiftStudy copied to clipboard

遇到个小问题,这2个报错怎么解决呢?

Open patrickpeng2091 opened this issue 9 years ago • 4 comments

Uploading image.png…

patrickpeng2091 avatar Nov 01 '15 23:11 patrickpeng2091

1./Users/patrick/Desktop/develop/SwiftStudy/SwiftStudy/CustomVC/CostomNavigationVC.swift:79:65: Downcast from 'UIViewController?' to 'UIViewController' only unwraps optionals; did you mean to use '!'?

2./Users/patrick/Desktop/develop/SwiftStudy/SwiftStudy/CustomVC/CostomNavigationVC.swift:91:65: Downcast from 'UIViewController?' to 'UIViewController' only unwraps optionals; did you mean to use '!'?

patrickpeng2091 avatar Nov 01 '15 23:11 patrickpeng2091

由于swift语法的不断更新 类似于as的类型转换语法有些变化,已经修改了

Winter-Yang avatar Nov 02 '15 02:11 Winter-Yang

我分别修改为

let vc:UIViewController = self.viewControllers.last!

let button:UIButton! = UIButton(type: UIButtonType.Custom)

也可以了

patrickpeng2091 avatar Nov 02 '15 02:11 patrickpeng2091

是这样的 它的语法一直在变,我这块的版本分割字符串也有问题了,正在修改

Winter-Yang avatar Nov 02 '15 02:11 Winter-Yang