RoomInvitationViewCell.swift 636 B

12345678910111213141516171819202122232425
  1. //
  2. // SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
  3. // SPDX-License-Identifier: GPL-3.0-or-later
  4. //
  5. class RoomInvitationViewCell: UITableViewCell {
  6. @objc public static var NibName = "RoomInvitationViewCell"
  7. @objc public static var ReuseIdentifier = "RoomInvitationViewCellIdentifier"
  8. @objc public static var CellHeight = 65.0
  9. @IBOutlet weak var detailsLabel: UILabel!
  10. override func awakeFromNib() {
  11. super.awakeFromNib()
  12. self.selectionStyle = .none
  13. }
  14. override func prepareForReuse() {
  15. super.prepareForReuse()
  16. self.detailsLabel.text = ""
  17. }
  18. }