Created
May 18, 2020 14:43
-
-
Save stevencurtis/927dd5a3ec169859c4482074ced84c45 to your computer and use it in GitHub Desktop.
PanRotatePinchUIImageView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class PanRotatePinchUIImageView: UIImageView, UIGestureRecognizerDelegate { | |
| override init(frame: CGRect) { | |
| super.init(frame: frame) | |
| setup() | |
| } | |
| required init?(coder: NSCoder) { | |
| super.init(coder: coder) | |
| setup() | |
| } | |
| func setup() { | |
| let standardPan = UIPanGestureRecognizer(target: self, action: #selector(standardHandlePan(_:))) | |
| standardPan.delegate = self | |
| self.addGestureRecognizer(standardPan) | |
| let standardPinch = UIPinchGestureRecognizer(target: self, action: #selector(standardHandlePinch(_:))) | |
| standardPinch.delegate = self | |
| self.addGestureRecognizer(standardPinch) | |
| let standardRotate = UIRotationGestureRecognizer(target: self, action: #selector(standardHandleRotation(_:))) | |
| standardRotate.delegate = self | |
| self.addGestureRecognizer(standardRotate) | |
| } | |
| @objc func standardHandlePan(_ sender: UIPanGestureRecognizer) { | |
| guard let targetView = sender.view else {return} | |
| let translation = sender.translation(in: self.superview) | |
| targetView.center = CGPoint(x: targetView.center.x + translation.x | |
| ,y: targetView.center.y + translation.y) | |
| sender.setTranslation(CGPoint.zero, in: self.superview) | |
| } | |
| @objc func standardHandlePinch(_ sender: UIPinchGestureRecognizer) { | |
| guard let targetView = sender.view else {return} | |
| targetView.transform = targetView.transform.scaledBy(x: sender.scale, y: sender.scale) | |
| sender.scale = 1 | |
| } | |
| @objc func standardHandleRotation(_ sender: UIRotationGestureRecognizer) { | |
| guard let targetView = sender.view else {return} | |
| targetView.transform = targetView.transform.rotated(by: sender.rotation) | |
| sender.rotation = 0 | |
| } | |
| func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool { | |
| return true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment