Skip to content

Instantly share code, notes, and snippets.

@uruly
Created April 13, 2018 01:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uruly/b6e99b2dafb60db24766cda486fa361b to your computer and use it in GitHub Desktop.
Save uruly/b6e99b2dafb60db24766cda486fa361b to your computer and use it in GitHub Desktop.
import UIKit
class TransmissionView: UIView {
//自分自身はサワレナイ
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
let view = super.hitTest(point, with: event)
if view == self {
return nil
}
return view
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment