metatext/Views/Status/StatusListCell.swift

21 lines
585 B
Swift
Raw Normal View History

2020-09-14 07:20:25 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
class StatusListCell: UITableViewCell {
var viewModel: StatusViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = StatusContentConfiguration(viewModel: viewModel).updated(for: state)
}
override func layoutSubviews() {
super.layoutSubviews()
separatorInset.left = UIDevice.current.userInterfaceIdiom == .phone ? 0 : layoutMargins.left
}
}