IHLampCloseView.swift 481 B

12345678910111213141516171819202122
  1. //
  2. // IHLampCloseView.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2020/4/20.
  6. // Copyright © 2020 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class IHLampCloseView: UIView {
  10. @IBOutlet weak var offlabel: UILabel!
  11. override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
  12. offlabel.isHidden = false
  13. }
  14. override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
  15. offlabel.isHidden = true
  16. }
  17. }