1
0
mirror of https://github.com/metabolist/metatext synced 2025-01-22 23:41:38 +01:00
metatext-app-ios-iphone-ipad/Views/UIKit/Table View Cells/LoadMoreTableViewCell.swift

16 lines
468 B
Swift
Raw Normal View History

// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
2020-10-04 10:39:54 +02:00
import ViewModels
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
}
}