NCIntroCollectionViewCell.swift 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // NCIntroCollectionViewCell.swift
  3. // Nextcloud
  4. //
  5. // Created by Philippe Weidmann on 18.11.19.
  6. // Copyright © 2019 Philippe Weidmann. All rights reserved.
  7. // Copyright © 2019 Marino Faggiana All rights reserved.
  8. //
  9. // Author Philippe Weidmann
  10. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  11. //
  12. // This program is free software: you can redistribute it and/or modify
  13. // it under the terms of the GNU General Public License as published by
  14. // the Free Software Foundation, either version 3 of the License, or
  15. // (at your option) any later version.
  16. //
  17. // This program is distributed in the hope that it will be useful,
  18. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. // GNU General Public License for more details.
  21. //
  22. // You should have received a copy of the GNU General Public License
  23. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. //
  25. import UIKit
  26. class NCIntroCollectionViewCell: UICollectionViewCell {
  27. @IBOutlet weak var titleLabel: UILabel!
  28. @IBOutlet weak var imageView: UIImageView!
  29. var indexPath = IndexPath()
  30. override func awakeFromNib() {
  31. super.awakeFromNib()
  32. }
  33. }