我不明白。如何将ImageView带回到视图的原点位置(中间)?
我想使用TapGesture。
或者我还有第二种选择将其旋转回到原始位置。目前,我正在尝试将其旋转回去,但它不起作用。
@IBAction func backToOrigin(recognizer:UITapGestureRecognizer){
if let view = recognizer.view{
self.view.transform = CGAffineTransform(rotationAngle: CGFloat(Double.pi / 2))
}
}
答案 0 :(得分:0)
如果您只想撤消以前用于移动或旋转CGAffineTransform
的{{1}},则可以使用view
。 (另外,请从代码中删除对view.transform = CGAffineTransform.identity
的使用,因为self
中的self.view
和view
中的func
是不同的东西。)