ActionSheetPopoverApperance.swift 501 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ActionSheetPopoverApperance.swift
  3. // Sheeeeeeeeet
  4. //
  5. // Created by Daniel Saidi on 2017-11-24.
  6. // Copyright © 2017 Daniel Saidi. All rights reserved.
  7. //
  8. import UIKit
  9. open class ActionSheetPopoverApperance {
  10. // MARK: - Initialization
  11. public init(width: CGFloat) {
  12. self.width = width
  13. }
  14. public init(copy: ActionSheetPopoverApperance) {
  15. self.width = copy.width
  16. }
  17. // MARK: - Properties
  18. public var width: CGFloat
  19. }