VerticalAlign
@objc public enum VerticalAlign: Int, Equatable {
/// Align the banner to the top edge of the placement view
case top
/// Align the banner to the bottom edge of the placement view
case bottom
/// Align the banner to the center of the placement view
case center
}
typedef SWIFT_ENUM(NSInteger, VerticalAlign, open) {
/// Align the banner to the top edge of the placement view
VerticalAlignTop = 0,
/// Align the banner to the bottom edge of the placement view
VerticalAlignBottom = 1,
/// Align the banner to the center of the placement view
VerticalAlignCenter = 2,
};
Last updated