Options.swift 606 B

123456789101112131415161718192021222324252627
  1. //
  2. // Options.swift
  3. // Pods
  4. //
  5. // Created by George Marmaridis on 15/05/2017.
  6. //
  7. //
  8. import Foundation
  9. public enum BetterSegmentedControlOption {
  10. /* Selected segment */
  11. case indicatorViewBackgroundColor(UIColor)
  12. case indicatorViewInset(CGFloat)
  13. case indicatorViewBorderWidth(CGFloat)
  14. case indicatorViewBorderColor(UIColor)
  15. /* Behavior */
  16. case alwaysAnnouncesValue(Bool)
  17. case announcesValueImmediately(Bool)
  18. case panningDisabled(Bool)
  19. /* Other */
  20. case backgroundColor(UIColor)
  21. case cornerRadius(CGFloat)
  22. case bouncesOnChange(Bool)
  23. }