added success to UIControl.State

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-12-08 12:46:51 -06:00
parent d02794e369
commit 312dd949b5

View File

@ -10,4 +10,5 @@ import UIKit
extension UIControl.State {
public static var error = UIControl.State(rawValue: 1 << 16)
public static var success = UIControl.State(rawValue: 1 << 16)
}