IHLightCloseView.swift 488 B

123456789101112131415161718192021222324
  1. //
  2. // IHLightCloseView.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2020/8/21.
  6. // Copyright © 2020 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class IHLightCloseView: 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. }