我正在观看这个
Swift教程并且有这一行:
var button:UIButton = UIButton.buttonWithType(UIButtonType.System) as UIButton
两个问题:
>为什么那行以UIButton结尾?用户是否想要创建系统类型的按钮?这似乎是多余的.
>是否有必要在行的第一部分声明类型UIButton?或者换句话说,仅仅声明它是不够的
var button = UIButton.buttonWithType(UIButtonType.System)
我的意思是,如果等号后的部分正在初始化系统类型的按钮不足以让编译器推断按钮是UIButton?我的意思是,Apple说编译器很聪明推断类型.
你需要让UIButton保持低迷状态. buttonWithType()返回AnyObject!而不是UIButton,因此需要向下转换.除此之外,您不需要使用:UIButton显式键入变量.由于buttonWithType()的返回类型是向下转换为UIButton,因此变量类型将被推断为UIButton.这是你应该使用的:
原文链接:https://www.f2er.com/swift/319183.htmlvar button = UIButton.buttonWithType(UIButtonType.System) as UIButton