ios - UILabel 动画淡入淡出不起作用
<p><p>我正在尝试使用 UILabel 淡入淡出来构建对我的应用程序的介绍。我有两个标签。我想让第一个淡入,在屏幕上停留 4 秒钟。然后第二个标签应该淡入并在屏幕上停留 4 秒钟。然后它应该淡出两个标签。</p>
<p>我有以下代码,但它没有做任何事情,因为它直接进入最终状态。我在 viewDidAppear() 中有以下方法。我做错了什么?</p>
<pre><code>-(void) animateLabels
{
;
;
firstLabel.alpha = 1;
;
;
;
secondLabel.alpha = 1;
;
;
;
secondLabel.alpha = 0;
firstLabel.alpha=0;
;
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>使用基于 block 的动画并将您的动画链接在一起。所以有3个步骤。标签1 淡入,标签2 淡入,最后标签3 淡入。我已经编写了下面的代码来淡入 label1 和 label2。淡出很简单。我想你可以填写其余的。从这里直接开始......</p>
<p>试试这个 - </p>
<pre><code>[UIView animateWithDuration:1.0
delay:4
options:UIViewAnimationOptionCurveLinear | UIViewAnimationOptionAllowUserInteraction
animations:^(void)
{
;
}
completion:^(BOOL finished)
{
if(finished)
{
[UIView animateWithDuration:1.0
delay:4.0
options:UIViewAnimationOptionCurveLinear | UIViewAnimationOptionAllowUserInteraction
animations:^(void)
{
;
}
completion:^(BOOL finished)
{
if(finished)
{
//put another block her to hide both the labels.
}
}];
}
}];
</code></pre></p>
<p style="font-size: 20px;">关于ios - UILabel 动画淡入淡出不起作用,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8216549/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8216549/
</a>
</p>
页:
[1]