菜鸟教程小白 发表于 2022-12-13 11:41:40

ios - 我是否应该将 "addArrangedSubview"附在动画 block 中?


                                            <p><p>我没有学习 <code>UIStackView</code> 的使用并阅读 <a href="http://code.tutsplus.com/tutorials/ios-9-getting-started-with-uistackview--cms-24193" rel="noreferrer noopener nofollow">a good tutorial</a>在网上。在教程中,作者编写了如下代码来制作动画:</p>

<pre><code>@IBAction func addStar(sender: AnyObject) {
    let starImgVw:UIImageView = UIImageView(image: UIImage(named: &#34;star&#34;))
    starImgVw.contentMode = .ScaleAspectFit
    self.horizontalStackView.addArrangedSubview(starImgVw)
    UIView.animateWithDuration(0.25, animations: {
      self.horizontalStackView.layoutIfNeeded()
    })
}
</code></pre>

<p>但是,当我克隆存储库并稍微更改代码时,我仍然可以正常看到相同的动画。</p>

<pre><code>@IBAction func addStar(sender: AnyObject) {
    let starImgVw:UIImageView = UIImageView(image: UIImage(named: &#34;star&#34;))
    starImgVw.contentMode = .ScaleAspectFit
    UIView.animateWithDuration(0.25, animations: {
      self.horizontalStackView.addArrangedSubview(starImgVw)
      self.horizontalStackView.layoutIfNeeded()
    })
}
</code></pre>

<p>我将 <code>self.horizo​​ntalStackView.addArrangedSubview(starImgVw)</code> 移到了动画 block 的内部。</p>

<p>我也在 <code>removeStar</code> 函数上尝试过同样的事情;这次移动了 <code>self.horizo​​ntalStackView.removeArrangedSubview(aStar)</code> 和 <code>aStar.removeFromSuperview()</code>,但我也确认动画可以正常工作。</p>

<p>所以我的问题如下:</p>

<ul>
<li><p>哪种方式更好?</p></li>
<li><p>为什么这两个代码的工作方式相同?</p></li>
<li><p>当我删除 <code>layoutIfNeeded()</code> 后,动画就不起作用了。这是因为如果我不强制立即更新 View ,那么下一个 View 更新周期会发生在动画 block 之后,因此动画不再有效,对吧?</p></li>
</ul></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在动画 block 中,您只想包含您希望看到动画的更改。您不应该同时包含多个更改,因为这样功能变得有点不可预测。您无法确定哪个更改会优先于其他更改。</p>

<p>所以回答你的问题,你有第一个例子</p>

<pre><code>UIView.animateWithDuration(0.25, animations: {
    self.horizontalStackView.layoutIfNeeded()
})
</code></pre>

<p>是编写这段代码的更好方法。</p>

<p>只有 UIView 的特定属性是可动画的。来自 Apple 的文档:</p>

<pre><code>The following properties of the UIView class are animatable:
@property frame
@property bounds
@property center
@property transform
@property alpha
@property backgroundColor
@property contentStretch
</code></pre>

<p>本质上,通过调用 <code>layoutIfNeeded</code>,您可以让 <code>animateWithDuration</code> 在处理器布局之前将约束添加到星形 View 。这就是你看到它向右移动的原因。</p>

<p>删除 <code>layoutIfNeeded()</code> 只会让您添加 subview 功能。 <strong>使用 animateWithDuration 函数无法为 subview 添加动画</strong>。这就是为什么它不起作用。您可以在首次创建时将 alpha 设置为 0.0,然后在 <code>animateWithDuration</code> 中将 alpha 设置为 1.0,从而使其看起来具有动画效果。</p>

<pre><code>starImgVw.alpha = 0.0
horizontalStackView.addArrangedSubview(starImgVw)

UIView.animateWithDuration(0.25) { () -&gt; Void in
    starImgVw.alpha = 1.0
}
</code></pre>

<p>我希望这能完全回答你的问题。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 我是否应该将&#34;addArrangedSubview&#34;附在动画 block 中?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32513377/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32513377/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 我是否应该将 &#34;addArrangedSubview&#34;附在动画 block 中?