mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2025-01-31 17:45:17 +01:00
34 lines
654 B
Swift
34 lines
654 B
Swift
//
|
|
// ComposeContentTableViewCell.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-6-28.
|
|
//
|
|
|
|
import UIKit
|
|
import UIHostingConfigurationBackport
|
|
|
|
final class ComposeContentTableViewCell: 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 ComposeContentTableViewCell {
|
|
|
|
private func _init() {
|
|
selectionStyle = .none
|
|
layer.zPosition = 999
|
|
backgroundColor = .clear
|
|
}
|
|
|
|
}
|