ProgrammaticAccessLibrary Framework Reference

  • Globally available enumerations include PALNonceErrorCode for errors in PALNonceErrorDomain and PALFlag as a nullable flag.

  • PALNonceErrorCode is declared as a typealias of NonceError in Swift and as an enum of type NSInteger in Objective-C.

  • PALFlag is declared as an enum of type Int in Swift and as an enum of type NSInteger in Objective-C, usable for fields in PALNonceRequest.

Enumerations

The following enumerations are available globally.

  • Error codes in PALNonceErrorDomain.

    Declaration

    Swift

    typealias NonceError.Code._ErrorType = NonceError

    Objective-C

    enum PALNonceErrorCode : NSInteger {}
  • A nullable flag used for various PALNonceRequest fields.

    Declaration

    Swift

    enum Flag : Int, @unchecked Sendable

    Objective-C

    enum PALFlag : NSInteger {}