gpt4 book ai didi

xcode - UIButton 如何淡入淡出

转载 作者:行者123 更新时间:2023-12-04 22:50:48 24 4
gpt4 key购买 nike

如何在 View 中淡入 UIButton?

现在我添加它:

    [myView addSubview:myButton];

但如果我想淡化它呢?
[UIView animateWithDuration:3.0
delay:0.0
options: UIViewAnimationCurveEaseInOut
animations:^{myButton.alpha = 1.0}
completion:^(BOOL finished){ [myView addSubview:myButton]; }];

谢谢!

最佳答案

尝试使用

myButton.alpha = 0.0;
[myView addSubview:myButton];

在动画调用之前。
[UIView animateWithDuration:3.0
delay:0.0
options: UIViewAnimationCurveEaseInOut
animations:^{myButton.alpha = 1.0;}
completion:nil];

如果您将其淡入并添加到 View 中,则淡入部分将不在 View 范围内(将在屏幕外)。因此,首先在零 alpha 处添加它,然后将其淡入。

关于xcode - UIButton 如何淡入淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6178531/

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