IHSelectedRoomCell.swift 566 B

12345678910111213141516171819202122232425
  1. //
  2. // IHSelectedRoomCell.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2020/3/4.
  6. // Copyright © 2020 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class IHSelectedRoomCell: UITableViewCell {
  10. @IBOutlet weak var nameLabel: UILabel!
  11. override func awakeFromNib() {
  12. super.awakeFromNib()
  13. selectionStyle = UITableViewCell.SelectionStyle.none
  14. }
  15. override func setSelected(_ selected: Bool, animated: Bool) {
  16. super.setSelected(selected, animated: animated)
  17. // Configure the view for the selected state
  18. }
  19. }