CellTouchImageView.swift 499 B

123456789101112131415161718192021222324
  1. //
  2. // CellTouchImageView.swift
  3. // O2Platform
  4. //
  5. // Created by 刘振兴 on 16/9/19.
  6. // Copyright © 2016年 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class CellTouchImageView: UIImageView {
  10. /**
  11. 覆盖touch事件,不向父级传递
  12. - parameter touches:
  13. - parameter event:
  14. */
  15. override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
  16. // DDLogDebug(touches.debugDescription)
  17. // DDLogDebug(event.debugDescription)
  18. }
  19. }