|
//
// DestructiveAlertAction.swift
// PaiAi
//
// Created by FFIB on 2017/11/20.
// Copyright © 2017年 yb. All rights reserved.
//
import UIKit
class DestructiveAlertAction: FFAlertAction {
init(title: String, handler: ((FFAlertAction) -> Void)?) {
super.init(attributedTitle: NSAttributedString(string: title, attributes: [NSAttributedString.Key.foregroundColor: UIColor(r: 248, g: 86, b: 131)]),
backgroundColor: UIColor.white, handler: handler)
}
}
|