generamba_templates/touchin-tablecell/TableCell/cell.swift.liquid

23 lines
434 B
Plaintext

import UIKit
import TableKit
import RxSwift
import RxCocoa
import PinLayout
/// <#Cell description#>
final class {{ module_info.name }}: UITableViewCell, ConfigurableCell {
private var disposeBag = DisposeBag()
override func prepareForReuse() {
super.prepareForReuse()
disposeBag = DisposeBag()
}
func configure(with viewModel: {{ module_info.name }}ViewModel) {
// configuration
}
}