TableKit/Demo/Classes/Presentation/Views/ConfigurableTableViewCell.s...

12 lines
229 B
Swift

import UIKit
import TableKit
class ConfigurableTableViewCell: UITableViewCell, ConfigurableCell {
func configure(with text: String) {
accessoryType = .disclosureIndicator
textLabel?.text = text
}
}