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 = 0
Swift
case disabled = 0
-
Verification passed
Declaration
Objective-C
RGLFieldVerificationResultVerified = 1
Swift
case verified = 1
-
Verification failed
Declaration
Objective-C
RGLFieldVerificationResultNotVerified = 2
Swift
case notVerified = 2
-
Positive comparison result
Declaration
Objective-C
RGLFieldVerificationResultCompareTrue = 3
Swift
case compareTrue = 3
-
Negative comparison result
Declaration
Objective-C
RGLFieldVerificationResultCompareFalse = 4
Swift
case compareFalse = 4