| 1234567891011121314151617181920212223242526272829 |
- //
- // LNRoomUnknownMessageCell.swift
- // Gami
- //
- // Created by OneeChan on 2026/3/11.
- //
- import Foundation
- import UIKit
- class LNRoomUnknownMessageCell: UITableViewCell {
- private let contentLabel = UILabel()
-
- override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
- super.init(style: style, reuseIdentifier: reuseIdentifier)
-
- setupViews()
- }
-
- required init?(coder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- }
- extension LNRoomUnknownMessageCell {
- private func setupViews() {
- }
- }
|