vds_ios/VDS/Extensions/UIControl.swift
Matt Bruce e02d4ed83f commented code for extensions
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-07-25 14:16:08 -05:00

19 lines
330 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)
}