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