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