1234567891011121314151617 |
- import UIKit
- class ConfirmAlertAction: FFAlertAction {
- init(title: String = "确定", handler: ((FFAlertAction) -> Void)?) {
- super.init(attributedTitle: NSAttributedString(string: title, attributes: [NSAttributedStringKey.foregroundColor: UIColor.white]),
- backgroundColor: UIColor(r: 129, g: 209, b: 53), handler: handler)
- }
- }
|