Style.swift 412 B

12345678910111213141516171819202122232425
  1. //
  2. // Style.swift
  3. // SegmentedControl
  4. //
  5. // Created by Xin Hong on 15/12/30.
  6. // Copyright © 2015年 Teambition. All rights reserved.
  7. //
  8. import Foundation
  9. public enum SegmentedControlStyle {
  10. case text
  11. case image
  12. }
  13. public enum SegmentedControlSelectionIndicatorStyle {
  14. case none
  15. case top
  16. case bottom
  17. }
  18. public enum SegmentedControlSelectionBoxStyle {
  19. case none
  20. case `default`
  21. }