iOS - 基于 X、Y 方向旋转 UIImageView

发布于 2024-12-13 06:15:21 字数 224 浏览 3 评论 0原文

我将 UIView 子类化为头像对象,其中包含图标 (UIImageView)、名称 (UILabel) 和 ID (UILabel)。根据方向 X,Y 坐标,我希望图标旋转。例如,假设orientation.X = 1和orientation.Y = 1将给出45度角。 X 和 Y 可以是 -1 到 1 之间的任何值。

我不确定它是如何数学计算的,也不知道 cocoa API 是否调用它。有什么想法从哪里开始吗?

I've subclassed a UIView as an avatar-object, which contains an icon (UIImageView), name (UILabel) and ID (UILabel). Depending on the orientation X,Y coordinates, I want the icon to be rotated. For example, say orientation.X = 1 and orientation.Y = 1 would give 45 degrees angle. X and Y could be anything between -1 and 1.

I'm not sure how it is calculated mathematically nor the cocoa API calls for it. Any ideas where to start?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天冷不及心凉 2024-12-20 06:15:21

为了平滑,我添加了一个动画:

- (void)rotateView:(UIView *)view withDuration:(NSTimeInterval)duration andRadians:(CGFloat)radians
{
    // Setup the animation
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:duration];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
    [UIView setAnimationBeginsFromCurrentState:YES];

    // The transform matrix
    CGAffineTransform transform = CGAffineTransformMakeRotation(radians);
    view.transform = transform;

    // Commit the changes
    [UIView commitAnimations];

}

编辑:

对于其他角度,您需要创建自己的旋转矩阵。

旋转矩阵的工作原理

阅读此处如何在 Objective-c 中创建自定义仿射变换

希望这会有所帮助。

for smoothness i added an animation:

- (void)rotateView:(UIView *)view withDuration:(NSTimeInterval)duration andRadians:(CGFloat)radians
{
    // Setup the animation
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:duration];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
    [UIView setAnimationBeginsFromCurrentState:YES];

    // The transform matrix
    CGAffineTransform transform = CGAffineTransformMakeRotation(radians);
    view.transform = transform;

    // Commit the changes
    [UIView commitAnimations];

}

EDIT:

for other angles you need to create your own rotation matrix.

How rotation matrix works

Read here how to create a custom affine transformation in Objective-c

Hope this helps.

栖迟 2024-12-20 06:15:21

您需要研究三角函数 - 特别是 acosasin

这篇文章可能会有所帮助。

You need to look into the trigonometric functions - specifically acos and asin.

This article may be helpful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文