mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 08:10:59 +00:00
15 lines
468 B
Swift
15 lines
468 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
final class LoadMoreTableViewCell: SeparatorConfiguredTableViewCell {
|
|
var viewModel: LoadMoreViewModel?
|
|
|
|
override func updateConfiguration(using state: UICellConfigurationState) {
|
|
guard let viewModel = viewModel else { return }
|
|
|
|
contentConfiguration = LoadMoreContentConfiguration(viewModel: viewModel)
|
|
accessibilityElements = [contentView]
|
|
}
|
|
}
|