gpt4 book ai didi

ios - 围绕其中心点旋转 UIImageView?

转载 作者:可可西里 更新时间:2023-11-01 03:26:14 28 4
gpt4 key购买 nike

我在 UIImageView (self.myImage) 中有一个透明的 png,我想围绕它的中心点旋转它。代码应该非常简单:

[self.myImage.layer setAnchorPoint:CGPointMake(0.5, 0.5)];
[UIView animateWithDuration:1.0 animations:^{
[self.myImage setTransform:CGAffineTransformMakeRotation(angle)];
}];

图像以正确的速度/时间和正确的角度旋转,但它的位置发生了偏移。这是正在发生的事情的示例:

enter image description here

灰色方 block 只是为了显示在屏幕中的位置。透明的 png(包含在 UIImageView 中)是另一个图形。白色虚线表示 UIImageView 的中心。图像的左侧显示图像的原始位置,右侧显示使用上述代码旋转后的图像(向右稍微向下移动)。黑白圆圈位于图像文件的中心。

有什么我想念的吗?据我了解,上面的第一行不是必需的,因为它们是默认值。我是否必须在 Storyboard 中/以编程方式设置/取消设置某些内容?

最佳答案

你试试这段代码

  - (void)viewDidLoad
{
[super viewDidLoad];
CATransform3D transform = CATransform3DIdentity;
transform.m34 = -1 / 500.0;
transform = CATransform3DRotate(transform, .0 * M_PI_2, 1, 0, 0);/*Here the angle of transform set (Here angle set as 0)*/
self.transformView.layer.transform = transform;
}

- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];

CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
animation.fromValue = [NSNumber numberWithFloat:0];
animation.toValue = [NSNumber numberWithFloat:2 * M_PI];
animation.duration = 3.0;
animation.repeatCount = HUGE_VALF;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
[self.discView.layer addAnimation:animation forKey:@"transform.rotation.z"];
}

- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
[self.discView.layer removeAllAnimations];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

在这里,你只需将 transformView 更改为另一个 View 或 ImageView

关于ios - 围绕其中心点旋转 UIImageView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19922752/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com