PSPDFTextInputFormat

Objective-C

enum PSPDFTextInputFormat : NSUInteger {}

Swift

@frozen enum TextInputFormat : UInt, @unchecked Sendable

An input format for a text form field.

  • The text will not have any predefined format.

    Declaration

    Objective-C

    PSPDFTextInputFormatNormal

    Swift

    case normal = 0
  • The text will be formatted as a number.

    Declaration

    Objective-C

    PSPDFTextInputFormatNumber

    Swift

    case number = 1
  • The text will be formatted as a date.

    Declaration

    Objective-C

    PSPDFTextInputFormatDate

    Swift

    case date = 2
  • The text will be formatted as a time.

    Declaration

    Objective-C

    PSPDFTextInputFormatTime

    Swift

    case time = 3