ActionSheetLinkItemAppearance.swift 644 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // ActionSheetLinkItemAppearance.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 ActionSheetLinkItemAppearance: ActionSheetItemAppearance {
  10. // MARK: - Initialization
  11. public override init() {
  12. super.init()
  13. }
  14. public override init(copy: ActionSheetItemAppearance) {
  15. super.init(copy: copy)
  16. guard let copy = copy as? ActionSheetLinkItemAppearance else { return }
  17. linkIcon = copy.linkIcon
  18. }
  19. // MARK: - Properties
  20. public var linkIcon: UIImage?
  21. }