PBPopupBarStyle
@objc
public enum PBPopupBarStyle : Int
Available styles for the popup bar.
Use the most appropriate style for the current operating system version. Uses prominent style for iOS 10 and above, otherwise compact.
-
Prominent bar style
Declaration
Swift
case prominent
-
Compact bar style
Declaration
Swift
case compact
-
Custom bar style
Note
Do not set this style directly. Instead setPBPopupBar.customBarViewController
and the framework will use this style.Declaration
Swift
case custom
-
Default style: prominent style for iOS 10 and above, otherwise compact.
Declaration
Swift
public static let `default`: PBPopupBarStyle
-
An array of human readable strings for the popup bar styles.
Declaration
Swift
public static let strings: [String]
-
Return an human readable description for the popup bar style.
Declaration
Swift
public var description: NSString { get }