PSPDFSignatureSavingStrategy

Objective-C

enum PSPDFSignatureSavingStrategy : NSUInteger {}

Swift

@frozen enum SignatureSavingStrategy : UInt, @unchecked Sendable

Possible options for whether signature annotations should be saved.

  • Signature should be always saved, without giving the user a choice. This setting is ignored if no signatureStore is provided.

    Declaration

    Objective-C

    PSPDFSignatureSavingStrategyAlwaysSave

    Swift

    case alwaysSave = 0
  • Signature should be never saved, without giving the user a choice. Always showing the new signature creation UI.

    Declaration

    Objective-C

    PSPDFSignatureSavingStrategyNeverSave

    Swift

    case neverSave = 1
  • Signature should only be saved if selected in the UI. A toggle will be added to the signature creation UI. This setting is ignored if no signatureStore is provided.

    Declaration

    Objective-C

    PSPDFSignatureSavingStrategySaveIfSelected

    Swift

    case saveIfSelected = 2