//
//  AlertItem.swift
//  PaiaiUIKit
//
//  Created by FFIB on 2019/1/22.
//  Copyright © 2019 FFIB. All rights reserved.
//

import UIKit

public class AlertItem: UIButton {
    var sign = 0
    
    public override init(frame: CGRect) {
        super.init(frame: frame)
    }
    
    @available(*, unavailable, message: "Loading this view from a nib is unsupported")
    public required init?(coder aDecoder: NSCoder) {
        fatalError("Loading this view from a nib is unsupported")
    }
}