LNRoomUnknownMessageCell.swift 592 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // LNRoomUnknownMessageCell.swift
  3. // Gami
  4. //
  5. // Created by OneeChan on 2026/3/11.
  6. //
  7. import Foundation
  8. import UIKit
  9. class LNRoomUnknownMessageCell: UITableViewCell {
  10. private let contentLabel = UILabel()
  11. override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
  12. super.init(style: style, reuseIdentifier: reuseIdentifier)
  13. setupViews()
  14. }
  15. required init?(coder: NSCoder) {
  16. fatalError("init(coder:) has not been implemented")
  17. }
  18. }
  19. extension LNRoomUnknownMessageCell {
  20. private func setupViews() {
  21. }
  22. }