我是新手代码,每次按下同一个按钮,我都不知道如何旋转图像。在我的代码中,我可以旋转它。我已经尝试过循环和不定式语句,但它不起作用。这是我的代码:
@IBAction func rotate(_ sender: Any) {
UIView.animate(withDuration: 2, delay: 0.5, animations:
({self.image.transform = CGAffineTransform(rotationAngle: 90.0 * 3.14/180.0)
)
}
}
答案 0 :(得分:0)
我猜你在弄乱括号和大括号。我相信你的代码应该是这样的:
@IBAction func rotate(_ sender: Any) {
UIView.animate(withDuration: 2, delay: 0.5, animations: {
self.image.transform = CGAffineTransform(rotationAngle: 90.0 * 3.14/180.0)
})
}