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

16 lines
500 B
Swift
Raw Normal View History

2020-10-30 07:11:24 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
2021-02-09 02:48:02 +00:00
final class NotificationTableViewCell: SeparatorConfiguredTableViewCell {
2020-10-30 07:11:24 +00:00
var viewModel: NotificationViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = NotificationContentConfiguration(viewModel: viewModel).updated(for: state)
2021-02-02 21:04:11 +00:00
accessibilityElements = [contentView]
2020-10-30 07:11:24 +00:00
}
}