metatext/Views/LoadMoreCell.swift

27 lines
739 B
Swift
Raw Normal View History

// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
2020-10-04 08:39:54 +00:00
import ViewModels
2020-11-09 06:22:20 +00:00
final class LoadMoreCell: UITableViewCell {
2020-10-04 08:39:54 +00:00
var viewModel: LoadMoreViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = LoadMoreContentConfiguration(viewModel: viewModel)
}
2020-10-02 07:41:30 +00:00
override func layoutSubviews() {
super.layoutSubviews()
2020-10-04 08:39:54 +00:00
if UIDevice.current.userInterfaceIdiom == .phone {
separatorInset.left = 0
separatorInset.right = 0
} else {
separatorInset.left = layoutMargins.left
separatorInset.right = layoutMargins.right
}
2020-10-02 07:41:30 +00:00
}
}