ActionSheetCustomItemCell.swift 458 B

12345678910111213141516171819202122
  1. //
  2. // ActionSheetCustomItemCell.swift
  3. // Sheeeeeeeeet
  4. //
  5. // Created by Daniel Saidi on 2018-10-08.
  6. // Copyright © 2018 Daniel Saidi. All rights reserved.
  7. //
  8. /*
  9. This protocol must be implemented by any cell that is to be
  10. used together with an `ActionSheetCustomItem`.
  11. */
  12. import UIKit
  13. public protocol ActionSheetCustomItemCell where Self: ActionSheetItemCell {
  14. static var nib: UINib { get }
  15. static var defaultSize: CGSize { get }
  16. }