// // LabelCell.swift // Bark // // Created by huangfeng on 2020/5/29. // Copyright © 2020 Fin. All rights reserved. // import UIKit import Material class LabelCell: UITableViewCell { override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { super.init(style: style, reuseIdentifier: reuseIdentifier) self.selectionStyle = .none self.backgroundColor = Color.grey.lighten5 self.textLabel?.textColor = Color.darkText.secondary self.textLabel?.fontSize = 12 self.textLabel?.numberOfLines = 0 } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } }