1234567891011121314151617181920212223242526272829 |
- 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)
- }
- }
|