2020-10-02 05:19:14 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import UIKit
|
2020-10-04 10:39:54 +02:00
|
|
|
import ViewModels
|
2020-10-02 05:19:14 +02:00
|
|
|
|
2021-02-09 03:48:02 +01:00
|
|
|
final class LoadMoreTableViewCell: SeparatorConfiguredTableViewCell {
|
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)
|
2021-02-02 22:32:39 +01:00
|
|
|
accessibilityElements = [contentView]
|
2020-10-04 10:39:54 +02:00
|
|
|
}
|
2020-10-02 05:19:14 +02:00
|
|
|
}
|