12345678910111213141516171819202122232425 |
- //
- // IHSelectedRoomCell.swift
- // Inhealth
- //
- // Created by weclouds on 2020/3/4.
- // Copyright © 2020 weclouds. All rights reserved.
- //
- import UIKit
- class IHSelectedRoomCell: UITableViewCell {
- @IBOutlet weak var nameLabel: UILabel!
- override func awakeFromNib() {
- super.awakeFromNib()
- selectionStyle = UITableViewCell.SelectionStyle.none
- }
- override func setSelected(_ selected: Bool, animated: Bool) {
- super.setSelected(selected, animated: animated)
- // Configure the view for the selected state
- }
-
- }
|