RGLFieldVerificationResult
Objective-C
enum RGLFieldVerificationResult : NSInteger {}
Swift
enum FieldVerificationResult : Int, @unchecked Sendable
Enumeration contains identifiers that determine the verification and comparison of text fields
-
Comparison was not done, result undefined
Declaration
Objective-C
RGLFieldVerificationResultDisabled = 0Swift
case disabled = 0 -
Verification passed
Declaration
Objective-C
RGLFieldVerificationResultVerified = 1Swift
case verified = 1 -
Verification failed
Declaration
Objective-C
RGLFieldVerificationResultNotVerified = 2Swift
case notVerified = 2 -
Positive comparison result
Declaration
Objective-C
RGLFieldVerificationResultCompareTrue = 3Swift
case compareTrue = 3 -
Negative comparison result
Declaration
Objective-C
RGLFieldVerificationResultCompareFalse = 4Swift
case compareFalse = 4