15 lines
270 B
Swift
15 lines
270 B
Swift
//
|
|
// UIControl.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 12/8/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
extension UIControl.State {
|
|
public static var error = UIControl.State(rawValue: 1 << 16)
|
|
public static var success = UIControl.State(rawValue: 1 << 17)
|
|
}
|