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