How Can I Rotate A UIImage and Image Data By 90 Degrees

前端 未结 6 669
难免孤独
难免孤独 2021-02-09 16:09

I have a UIImageView that contains an image. At the minute the user can click to save the image within the UIImageView to disk.

I would like to make it so that the the

6条回答
  •  情歌与酒
    2021-02-09 17:03

    In Swift 4

    imageView.transform = CGAffineTransform(rotationAngle: CGFloat(Double.pi/2))

提交回复
热议问题