123456789101112131415161718192021222324252627 |
- //
- // Options.swift
- // Pods
- //
- // Created by George Marmaridis on 15/05/2017.
- //
- //
- import Foundation
- public enum BetterSegmentedControlOption {
- /* Selected segment */
- case indicatorViewBackgroundColor(UIColor)
- case indicatorViewInset(CGFloat)
- case indicatorViewBorderWidth(CGFloat)
- case indicatorViewBorderColor(UIColor)
-
- /* Behavior */
- case alwaysAnnouncesValue(Bool)
- case announcesValueImmediately(Bool)
- case panningDisabled(Bool)
-
- /* Other */
- case backgroundColor(UIColor)
- case cornerRadius(CGFloat)
- case bouncesOnChange(Bool)
- }
|