Bark/View/LabelCell.swift
2021-10-22 17:13:38 +08:00

28 lines
722 B
Swift

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