20 lines
383 B
Swift
20 lines
383 B
Swift
//
|
|
// 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
|
|
}
|
|
}
|