PSPDFFlexibleToolbarDragView

Objective-C


@interface PSPDFFlexibleToolbarDragView : UIView

Swift

class FlexibleToolbarDragView : UIView

Toolbar drag & drop indicator view.

  • Color used for the circle bar indicators or as the background color in inverted mode. Defaults to tintColor in UIKit.

    Declaration

    Objective-C

    @property (nonatomic) UIColor *_Nonnull barColor;

    Swift

    var barColor: UIColor { get set }
  • Inverts the bar and background color (can be used to indicate selection).

    Declaration

    Objective-C

    @property (nonatomic) BOOL inverted;

    Swift

    var inverted: Bool { get set }
  • Inverts the bar and background color and optionally fades the transition.

    Declaration

    Objective-C

    - (void)setInverted:(BOOL)inverted animated:(BOOL)animated;

    Swift

    func setInverted(_ inverted: Bool, animated: Bool)