gpt4 book ai didi

ios - 从另一个 anchor 在背景中缩放动画

转载 作者:行者123 更新时间:2023-11-29 12:11:17 27 4
gpt4 key购买 nike

我为背景图像制作了一个带有箭头的缩放动画,通过缩放图像(它包括箭头)意味着它是一个完整的背景。它从背景的中心开始缩放。但我想从箭头的中心开始缩放。

我想实现这个:

enter image description here

然后变成有比例的:

enter image description here

我必须在我的代码中更改什么:

    self.blueBackground.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1, 1);
[UIView animateWithDuration:5 animations:^{
self.blueBackground.transform = CGAffineTransformScale(CGAffineTransformIdentity, 30, 30);

} completion:^(BOOL finished) {

}];

在我当前的代码中,比例尺从背景中心开始,因此箭头在右侧结束(超出屏幕边界)。

最佳答案

尝试这样的事情:

- (void)animateArrow
{
self.blueBackground.transform = CGAffineTransformIdentity;
[UIView animateWithDuration:5 animations:^{
ScaleViewAboutPointInBounds(self.blueBackground, arrowCenter, 30);
} completion:^(BOOL finished) {
}];
}

static void ScaleViewAboutPointInBounds(UIView *view, CGPoint point, CGFloat scaleAmount)
{
CGFloat xAnchor = view.layer.anchorPoint.x * CGRectGetWidth(view.bounds);
CGFloat yAnchor = view.layer.anchorPoint.y * CGRectGetHeight(view.bounds);

CGFloat xOffset = point.x - xAnchor;
CGFloat yOffset = point.y - yAnchor;

CGAffineTransform shift = CGAffineTransformMakeTranslation(-xOffset, -yOffset);
CGAffineTransform unshift = CGAffineTransformMakeTranslation(xOffset, yOffset);
CGAffineTransform scale = CGAffineTransformMakeScale(scaleAmount, scaleAmount);

view.transform = CGAffineTransformConcat(shift, CGAffineTransformConcat(scale, unshift));
}

它可能比您需要的更通用,您可以做得更简单,但这也应该有效。只需将 point 更改为看起来像箭头中心的东西即可。

关于ios - 从另一个 anchor 在背景中缩放动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33385915/

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