vds_ios/VDS/Extensions/UIControl.swift
Matt Bruce 8e0287c8fd added readonly
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-05-28 09:33:10 -05:00

22 lines
429 B
Swift

//
// 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)
}