2022-10-10 13:14:52 +02:00
|
|
|
//
|
2022-10-11 12:31:40 +02:00
|
|
|
// ComposeContentTableViewCell.swift
|
2022-10-10 13:14:52 +02:00
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by MainasuK Cirno on 2021-6-28.
|
|
|
|
//
|
|
|
|
|
|
|
|
import os.log
|
|
|
|
import UIKit
|
2022-10-11 12:31:40 +02:00
|
|
|
import UIHostingConfigurationBackport
|
2022-10-10 13:14:52 +02:00
|
|
|
|
2022-10-11 12:31:40 +02:00
|
|
|
final class ComposeContentTableViewCell: UITableViewCell {
|
|
|
|
|
|
|
|
let logger = Logger(subsystem: "ComposeContentTableViewCell", category: "View")
|
2022-10-10 13:14:52 +02:00
|
|
|
|
2022-10-11 12:31:40 +02:00
|
|
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
|
|
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
|
|
|
_init()
|
|
|
|
}
|
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
super.init(coder: coder)
|
|
|
|
_init()
|
|
|
|
}
|
2022-10-10 13:14:52 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-10-11 12:31:40 +02:00
|
|
|
extension ComposeContentTableViewCell {
|
|
|
|
|
|
|
|
private func _init() {
|
|
|
|
selectionStyle = .none
|
|
|
|
layer.zPosition = 999
|
|
|
|
backgroundColor = .clear
|
|
|
|
}
|
2022-10-10 13:14:52 +02:00
|
|
|
|
|
|
|
}
|