ActionSheetCollectionItemCell.swift 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. import Foundation
  2. open class ActionSheetCollectionItemCell: ActionSheetItemCell {
  3. // MARK: - Properties
  4. static var itemCellIdentifier: String { return "Cell" }
  5. static var nib: UINib = UINib(nibName: "ActionSheetCollectionItemCell", bundle: Bundle.init(for: ActionSheetCollectionItemCell.self))
  6. // MARK: - Outlets
  7. @IBOutlet weak var collectionView: UICollectionView! {
  8. didSet {
  9. let flow = UICollectionViewFlowLayout()
  10. flow.scrollDirection = .horizontal
  11. collectionView.collectionViewLayout = flow
  12. }
  13. }
  14. // MARK: - Functions
  15. func setup(withNib nib: UINib, owner: UICollectionViewDataSource & UICollectionViewDelegate) {
  16. let id = ActionSheetCollectionItemCell.itemCellIdentifier
  17. collectionView.contentInset = .zero
  18. collectionView.register(nib, forCellWithReuseIdentifier: id)
  19. collectionView.dataSource = owner
  20. collectionView.delegate = owner
  21. collectionView.reloadData()
  22. }
  23. }