objective-c - Objective-C中的灯光动画
<p><p>我正在尝试在 Objective-c 中实现一个动画,其中我有一个纽约天际线插图作为附加图像。要求是实现城市灯光动画,其中天际线建筑物中的灯光(方形和矩形框)依次点亮......以吸引人的动画方式。实现这一点的一种方法是使用一组连续图像(UIImageView.animationImages = 图像数组),但我相信可能有更好、更有效的方法来实现这一点。如果有人能指出我正确的方向,我将不胜感激。</p>
<p> <img src="/image/7ydkT.jpg" alt="enter image description here"/> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>[UIView animateWithDuration:1 delay:0 options:0 animations:^{
light1.alpha = 1;
} completion:nil];
[UIView animateWithDuration:1 delay:0.5 options:0 animations:^{
light2.alpha = 1;
} completion:nil];
[UIView animateWithDuration:1 delay:1 options:0 animations:^{
light3.alpha = 1;
} completion:nil];
[UIView animateWithDuration:1 delay:1.5 options:0 animations:^{
light4.alpha = 1;
} completion:nil];
</code></pre>
<p>在创建灯光 View 时将其 alpha 设置为 0,然后在 <code>-viewDidAppear</code> 中运行它也许...
(这是假设每个灯都是一个单独的 <code>UIView</code>...)</p>
<p>如果您有很多 View ,您可以这样做来为每个 View 的 alpha 值设置动画:</p>
<pre><code>float n = 0;
for (UIView* v in self.view.subviews) {
if (v.alpha < 0.5) {
[UIView animateWithDuration:1 delay:n options:0 animations:^{
v.alpha = 1;
} completion:nil];
n += 0.5;
}
}
</code></pre></p>
<p style="font-size: 20px;">关于objective-c - Objective-C中的灯光动画,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/12284250/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/12284250/
</a>
</p>
页:
[1]