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