TextToolControllerOptions

@available(iOS 9.0, *)
@objcMembers
@objc(PESDKTextToolControllerOptions)
open class TextToolControllerOptions : ToolControllerOptions

Options for configuring a TextToolController.

  • Use this closure to configure the text input view. Defaults to an empty implementation.

    Declaration

    Swift

    public let textViewConfigurationClosure: ((UITextView) -> Void)?
  • Use this closure to configure the dimming view.

    Declaration

    Swift

    public let dimmingViewConfigurationClosure: ((UIView) -> Void)?
  • The title of the tool when it is used to update an existing label.

    Declaration

    Swift

    public let updateTitle: String?
  • The default color a newly created text has.

    Declaration

    Swift

    public let defaultTextColor: UIColor
  • Creates a new instance of TextToolControllerOptions using the given builder.

    Declaration

    Swift

    public init(builder: TextToolControllerOptionsBuilder)

    Parameters

    builder