metatext-app-ios-iphone-ipad/Views/LoadMoreCell.swift

27 lines
739 B
Swift
Raw Normal View History

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