IntroCollectionViewCell.swift 390 B

1234567891011121314151617181920
  1. //
  2. // IntroCollectionViewCell.swift
  3. // Nextcloud
  4. //
  5. // Created by Philippe Weidmann on 18.11.19.
  6. // Copyright © 2019 TWS. All rights reserved.
  7. //
  8. import UIKit
  9. class IntroCollectionViewCell: UICollectionViewCell {
  10. @IBOutlet weak var titleLabel: UILabel!
  11. @IBOutlet weak var imageView: UIImageView!
  12. override func awakeFromNib() {
  13. super.awakeFromNib()
  14. }
  15. }