1234567891011121314151617181920212223 |
- 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")
- }
- }
|