ActionSheetCollectionItemContentCell.swift 715 B

123456789101112131415161718192021222324252627
  1. //
  2. // ActionSheetCollectionItemContentCell.swift
  3. // Sheeeeeeeeet
  4. //
  5. // Created by Jonas Ullström (ullstrm) on 2018-03-01.
  6. // Copyright © 2018 Jonas Ullström. All rights reserved.
  7. //
  8. /*
  9. This protocol must be implemented by any cell that is to be
  10. used together with an `ActionSheetCollectionItem`.
  11. */
  12. import UIKit
  13. public protocol ActionSheetCollectionItemContentCell where Self: UICollectionViewCell {
  14. static var nib: UINib { get }
  15. static var defaultSize: CGSize { get }
  16. static var leftInset: CGFloat { get }
  17. static var rightInset: CGFloat { get }
  18. static var topInset: CGFloat { get }
  19. static var bottomInset: CGFloat { get }
  20. static var itemSpacing: CGFloat { get }
  21. }