32 lines
591 B
Swift
32 lines
591 B
Swift
//
|
|
// ComposeRepliedToTootContentTableViewCell.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-3-11.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
final class ComposeRepliedToTootContentTableViewCell: UITableViewCell {
|
|
|
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
|
_init()
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
super.init(coder: coder)
|
|
_init()
|
|
}
|
|
|
|
}
|
|
|
|
extension ComposeRepliedToTootContentTableViewCell {
|
|
|
|
private func _init() {
|
|
|
|
}
|
|
|
|
}
|
|
|