SettingCell2.swift 623 Bytes
//
//  SettingCell2.swift
//  Twear
//
//  Created by yangbin on 2021/12/22.
//

import UIKit

class SettingCell2: UITableViewCell {
    
    @IBOutlet weak var selectImageView: UIImageView!
    @IBOutlet weak var label: UILabel!
    
//    override var isSelected: Bool {
//        didSet {
//            
//        }
//    }
    
    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }
    
}