获取 UIView 的当前角度/旋转/弧度?
如何获取 UIView 当前的角度/旋转/弧度?
How do you get the current angle/rotation/radian a UIView has?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何获取 UIView 当前的角度/旋转/弧度?
How do you get the current angle/rotation/radian a UIView has?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
你可以这样做...
You can do it this way...
迅速:
Swift:
许多其他答案都引用了
atan2f
,但考虑到我们在CGFloat
上操作,我们可以只使用atan2
并跳过不必要的中间演员:Swift 4:
A lot of the other answers reference
atan2f
, but given that we're operating onCGFloat
s, we can just useatan2
and skip the unnecessary intermediate cast:Swift 4:
对于 Swift 3,您可以使用以下代码:
For Swift 3, you could use the following code:
//对于 Swift 3:M_PI 现在已贬值 Use Double.pi
//对于 Swift 4:
//For Swift 3: M_PI is depreciated now Use Double.pi
//For Swift 4:
在 swift 2 和 Xcode 7 中:
In swift 2 and Xcode 7 :
使用扩展:
用法:
Using extensions:
Usage: