// // ConfigurableTableViewCell.swift // TableKitDemo // // Created by Max Sokolov on 18/06/16. // Copyright © 2016 Tablet. All rights reserved. // import UIKit import TableKit class ConfigurableTableViewCell: UITableViewCell, ConfigurableCell { func configure(with text: String) { accessoryType = .disclosureIndicator textLabel?.text = text } }