RGLCheckResult
Objective-C
NS_ENUM(NSInteger, RGLCheckResult) {
/// Check was not passed, the controlled parameter is not permitted
RGLCheckResultError = 0,
/// Check was passed, the controlled parameter is permitted
RGLCheckResultOk = 1,
/// Check was not carried out
RGLCheckResultWasNotDone = 2
}
Swift
enum CheckResult : Int, @unchecked Sendable
Undocumented
-
Check was not passed, the controlled parameter is not permitted
Declaration
Objective-C
RGLCheckResultError = 0
Swift
case error = 0
-
Check was passed, the controlled parameter is permitted
Declaration
Objective-C
RGLCheckResultOk = 1
Swift
case ok = 1
-
Check was not carried out
Declaration
Objective-C
RGLCheckResultWasNotDone = 2
Swift
case wasNotDone = 2