//
//  ConfirmAlertAction.swift
//  PaiAi
//
//  Created by FFIB on 2017/11/20.
//  Copyright © 2017年 yb. All rights reserved.
//

import UIKit

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