mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 08:10:59 +00:00
27 lines
753 B
Swift
27 lines
753 B
Swift
|
// Copyright © 2021 Metabolist. All rights reserved.
|
||
|
|
||
|
import UIKit
|
||
|
import ViewModels
|
||
|
|
||
|
final class TagTableViewCell: UITableViewCell {
|
||
|
var viewModel: TagViewModel?
|
||
|
|
||
|
override func updateConfiguration(using state: UICellConfigurationState) {
|
||
|
guard let viewModel = viewModel else { return }
|
||
|
|
||
|
contentConfiguration = TagContentConfiguration(viewModel: viewModel).updated(for: state)
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|
||
|
}
|