PBPopupCloseButtonStyle

@objc
public enum PBPopupCloseButtonStyle : Int

Available styles for the popup close button.

Use the most appropriate close button style for the current operating system version. Uses chevron button style for iOS 10 and above, otherwise round button.

  • Chevron close button style.

    Declaration

    Swift

    case chevron
  • Round close button style.

    Declaration

    Swift

    case round
  • No close button.

    Declaration

    Swift

    case none = 2
  • Default style: Chevron button style for iOS 10 and above, otherwise round button.

    Declaration

    Swift

    public static let `default`: PBPopupCloseButtonStyle
  • An array of human readable strings for the close button styles.

    Declaration

    Swift

    public static let strings: [String]
  • Return an human readable description for the popup close button style.

    Declaration

    Swift

    public var description: NSString { get }