27 lines
466 B
Swift
27 lines
466 B
Swift
//
|
|
// FASettingCell.swift
|
|
// Fableon
|
|
//
|
|
// Created by 湖北秦九 on 2025/10/30.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class FASettingCell: FATableViewCell {
|
|
|
|
|
|
@IBOutlet weak var titleLabel: UILabel!
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
|
|
}
|
|
|
|
override func setSelected(_ selected: Bool, animated: Bool) {
|
|
super.setSelected(selected, animated: animated)
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
}
|