BaseTableViewCell.swift 310 B

12345678910111213141516
  1. //
  2. // BaseTableViewCell.swift
  3. // Bark
  4. //
  5. // Created by huangfeng on 2020/11/20.
  6. // Copyright © 2020 Fin. All rights reserved.
  7. //
  8. import UIKit
  9. class BaseTableViewCell<T>: UITableViewCell where T: ViewModel {
  10. var viewModel: T?
  11. func bindViewModel(model: T) {
  12. self.viewModel = model
  13. }
  14. }