Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以根据 UISlider 的值旋转图像吗?我知道可以使用 Gestures 轻松执行旋转,但我必须使用 UISLider 执行它。
只需使用:
imageView.transform = CGAffineTransformMakeRotation(slider.value * 2*M_PI / slider.maximumValue);