PBPopupPresentationStyle
@objc
public enum PBPopupPresentationStyle : Int
Available popup content view presentation styles.
Use the most appropriate style for the current operating system version. Uses fullScreen for iOS 9 and above, otherwise deck.
-
A presentation style which attempt to recreate the card-like transition found in the iOS 10 Apple Music.
Declaration
Swift
case deck
-
A presentation style in which the presented view covers the screen.
Declaration
Swift
case fullScreen
-
A presentation style in which the presented view covers a part of the screen (height only ???).
Declaration
Swift
case custom
-
A presentation style in which the presented view covers a part of the screen without popup bar.
Declaration
Swift
case popup
-
Default presentation style: fullScreen for iOS 9 and above, otherwise deck.
Declaration
Swift
public static let `default`: PBPopupPresentationStyle
-
An array of human readable strings for the popup content view presentation styles.
Declaration
Swift
public static let strings: [String]
-
Return an human readable description for the popup content view presentation style.
Declaration
Swift
public var description: NSString { get }