metatext/Views/UIKit/Table View Cells/ConversationTableViewCell.swift

16 lines
500 B
Swift
Raw Normal View History

2020-10-29 06:03:45 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
2021-02-09 02:48:02 +00:00
final class ConversationTableViewCell: SeparatorConfiguredTableViewCell {
2020-10-29 06:03:45 +00:00
var viewModel: ConversationViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = ConversationContentConfiguration(viewModel: viewModel).updated(for: state)
2021-02-02 21:32:39 +00:00
accessibilityElements = [contentView]
2020-10-29 06:03:45 +00:00
}
}