Swift中的便利构造函数

前端之家收集整理的这篇文章主要介绍了Swift中的便利构造函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。




// MARK: 需要用 convenience 声明 遍历构造函数 convenience init(normalImage: UIImage,highlightedImage: UIImage?) { // 必须先 调用本类的指定构造函数 实例化自己 self.init(); setImage(normalImage,forState: .Normal); if highlightedImage != nil { setImage(highlightedImage,forState:.Highlighted); } }

原文链接:https://www.f2er.com/swift/323950.html

猜你在找的Swift相关文章