gpt4 book ai didi

iphone - 如何为图像制作动画,就像它即将到来一样。例如 : moving in the sky. iPhone

转载 作者:行者123 更新时间:2023-11-29 04:37:57 25 4
gpt4 key购买 nike

如何对图像进行动画处理,使其看起来像是朝用户走来的。例如:在天空中移动

最佳答案

请查看此解决方案

-(IBAction)showSignInView:(id)sender{
signInView.hidden = NO;
[self initialDelayEnded:Your View ];
}
-(void)initialDelayEnded:(UIView *)view {
view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.3, 0.3);
view.alpha = 1.0;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:kTransitionDuration/1.5];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(bounce1AnimationStopped:)];
view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
[UIView commitAnimations];
}

- (void)bounce1AnimationStopped:(UIView *)view {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:kTransitionDuration/2];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(bounce2AnimationStopped:)];
view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.0, 1.0);
[UIView commitAnimations];
}

- (void)bounce2AnimationStopped:(UIView *)view {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:kTransitionDuration/2];
view.transform = CGAffineTransformIdentity;
[UIView commitAnimations];
}

关于iphone - 如何为图像制作动画,就像它即将到来一样。例如 : moving in the sky. iPhone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10814711/

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