ActionSheetSectionMarginAppearance.swift 519 B

12345678910111213141516171819202122232425
  1. //
  2. // ActionSheetSectionMarginAppearance.swift
  3. // Sheeeeeeeeet
  4. //
  5. // Created by Daniel Saidi on 2017-11-27.
  6. // Copyright © 2017 Daniel Saidi. All rights reserved.
  7. //
  8. import Foundation
  9. open class ActionSheetSectionMarginAppearance: ActionSheetItemAppearance {
  10. // MARK: - Initialization
  11. public override init() {
  12. super.init()
  13. hideSeparator()
  14. }
  15. public override init(copy: ActionSheetItemAppearance) {
  16. super.init(copy: copy)
  17. hideSeparator()
  18. }
  19. }