PBPopupPresentationState

@objc
public enum PBPopupPresentationState : Int

Available states of PBPopupController.

  • The popup bar is hidden, not presented.

    Declaration

    Swift

    case hidden
  • The popup bar is in presenting transition, will be shown. State will be closed.

    Declaration

    Swift

    case presenting
  • The popup bar is in dismissing transition, will be hidden, dismissed.

    Declaration

    Swift

    case dismissing
  • The popup bar is dismissed.

    Declaration

    Swift

    case dismissed
  • The popup bar is presented, popup content view is closed, hidden.

    Declaration

    Swift

    case closed
  • The popup bar is presented, hidden while popup content view is open, shown.

    Declaration

    Swift

    case open
  • The popup content view is in presenting transition, will be open, shown.

    Declaration

    Swift

    case opening
  • The popup content view is in dismissing transition, will be closed, hidden.

    Declaration

    Swift

    case closing
  • The popup content view is in transitioning transition, will be closed or open.

    Declaration

    Swift

    case transitioning
  • Return an human readable description for the PBPopupController state.

    Declaration

    Swift

    public var description: NSString { get }