|
//
// CancelAlertAction.swift
// PaiAi
//
// Created by FFIB on 2017/11/20.
// Copyright © 2017年 yb. All rights reserved.
//
import UIKit
class CancelAlertAction: FFAlertAction {
init() {
super.init(attributedTitle: NSAttributedString(string: "取消", attributes: [NSAttributedString.Key.foregroundColor: UIColor(r: 51, g: 51, b: 51)]),
backgroundColor: UIColor(r: 222, g: 222, b: 222), handler: nil)
}
}
|