// // UIControl.swift // VDS // // Created by Matt Bruce on 12/8/22. // import Foundation import UIKit extension UIControl.State { /// State for Error public static var error = UIControl.State(rawValue: 1 << 16) /// State for Success public static var success = UIControl.State(rawValue: 1 << 17) /// State for Success public static var readonly = UIControl.State(rawValue: 1 << 18) }