vds_ios/VDS/Extensions/UIControl.swift
Matt Bruce 312dd949b5 added success to UIControl.State
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-12-08 12:46:51 -06:00

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