mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
26 lines
695 B
Swift
26 lines
695 B
Swift
//
|
|
// 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")
|
|
}
|
|
}
|