32 lines
538 B
Swift
32 lines
538 B
Swift
//
|
|
// ComposeRepliedToStatusContentCollectionViewCell.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-3-11.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
final class ComposeRepliedToStatusContentCollectionViewCell: UICollectionViewCell {
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
_init()
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
super.init(coder: coder)
|
|
_init()
|
|
}
|
|
|
|
}
|
|
|
|
extension ComposeRepliedToStatusContentCollectionViewCell {
|
|
|
|
private func _init() {
|
|
|
|
}
|
|
|
|
}
|
|
|