gpt4 book ai didi

iphone - 如何在 iPhone 上改变 View 时制作溶解动画?

转载 作者:技术小花猫 更新时间:2023-10-29 10:41:34 24 4
gpt4 key购买 nike

如何在 iphone 中改变 View 时制作溶解动画?

融合效果:一个 View 正在改变另一个 View ,没有任何移动。

非常感谢您的帮助!

最佳答案

您要查找的动画是:

[UIView animateWithDuration: 1.0
animations:^{
view1.alpha = 0.0;
view2.alpha = 1.0;
}];

一个更完整的解决方案,使用该动画可能是:

- (void) replaceView: (UIView *) currentView withView: (UIView *) newView
{
newView.alpha = 0.0;
[self.view addSubview: newView];

[UIView animateWithDuration: 1.0
animations:^{
currentView.alpha = 0.0;
newView.alpha = 1.0;
}
completion:^(BOOL finished) {
[currentView removeFromSuperview];
}];
}

关于iphone - 如何在 iPhone 上改变 View 时制作溶解动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9514852/

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