metatext/Views/UIKit/Table View Cells/ConversationTableViewCell.swift
Justin Mazzocchi 5bfe75c778
VoiceOver wip
2021-02-02 13:32:39 -08:00

28 lines
826 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
final class ConversationTableViewCell: UITableViewCell {
var viewModel: ConversationViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = ConversationContentConfiguration(viewModel: viewModel).updated(for: state)
accessibilityElements = [contentView]
}
override func layoutSubviews() {
super.layoutSubviews()
if UIDevice.current.userInterfaceIdiom == .phone {
separatorInset.left = 0
separatorInset.right = 0
} else {
separatorInset.left = layoutMargins.left
separatorInset.right = layoutMargins.right
}
}
}