Skip to content

Instantly share code, notes, and snippets.

@tiagomartinho
Last active June 28, 2018 10:43
Show Gist options
  • Save tiagomartinho/f568de24ac016ec1d323cdeeab4eb68a to your computer and use it in GitHub Desktop.
Save tiagomartinho/f568de24ac016ec1d323cdeeab4eb68a to your computer and use it in GitHub Desktop.
@objc func didTapView(_ gestureRecognizer: UITapGestureRecognizer) {
let location = gestureRecognizer.location(in: view)
let circleView = addCircleView(in: location)
let pinchGestureRecognizer = UIPinchGestureRecognizer(target: self, action: #selector(didPinchView))
circleView.addGestureRecognizer(pinchGestureRecognizer)
let panGestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(didPanView))
circleView.addGestureRecognizer(panGestureRecognizer)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment