Няма описание

ConfirmAlertAction.swift 497B

1234567891011121314151617
  1. //
  2. // ConfirmAlertAction.swift
  3. // PaiAi
  4. //
  5. // Created by FFIB on 2017/11/20.
  6. // Copyright © 2017年 yb. All rights reserved.
  7. //
  8. import UIKit
  9. class ConfirmAlertAction: FFAlertAction {
  10. init(title: String = "确定", handler: ((FFAlertAction) -> Void)?) {
  11. super.init(attributedTitle: NSAttributedString(string: title, attributes: [NSAttributedStringKey.foregroundColor: UIColor.white]),
  12. backgroundColor: UIColor(r: 129, g: 209, b: 53), handler: handler)
  13. }
  14. }