SubtitleTableViewCell.swift 481 B

1234567891011121314151617
  1. //
  2. // SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  3. // SPDX-License-Identifier: GPL-3.0-or-later
  4. //
  5. class SubtitleTableViewCell: UITableViewCell {
  6. override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
  7. super.init(style: .subtitle, reuseIdentifier: reuseIdentifier)
  8. detailTextLabel?.numberOfLines = 0
  9. }
  10. required init?(coder: NSCoder) {
  11. fatalError("init(coder:) has not been implemented")
  12. }
  13. }