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

24 lines
626 B
Swift

//
// TextCell.swift
// Bark
//
// Created by huangfeng on 2021/6/25.
// Copyright © 2021 Fin. All rights reserved.
//
import UIKit
class DetailTextCell: UITableViewCell {
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: .value1, reuseIdentifier: reuseIdentifier)
self.selectionStyle = .none
self.accessoryType = .disclosureIndicator
self.backgroundColor = BKColor.background.secondary
}
@available(*, unavailable)
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}