説明なし

CenterConfirmItem.swift 601B

    // // CenterConfirmItem.swift // PaiaiUIKit // // Created by FFIB on 2019/1/23. // Copyright © 2019 FFIB. All rights reserved. // import UIKit final class CenterConfirmItem: AlertItem { static var `default`: CenterConfirmItem { return CenterConfirmItem() } init() { super.init(frame: CGRect.zero) initProperty() } func initProperty() { titleLabel?.numberOfLines = 0 titleLabel?.font = UIFont.systemFont(ofSize: 17) backgroundColor = UIColor(r: 129, g: 209, b: 53) setTitleColor(UIColor.white, for: .normal) } }