ios – 动画效果

ios – 动画效果,第1张

概述for button in buttonGroup { UIView.animateWithDuration(1, animations: { button.alpha = 0 })} VS UIView.animateWithDuration(1, animations: { for button in buttonGroup {
for button in buttonGroup {    UIVIEw.animateWithDuration(1,animations: {        button.Alpha = 0    })}

VS

UIVIEw.animateWithDuration(1,animations: {        for button in buttonGroup {            button.Alpha = 0        }    })

我在buttonGroup中有40多个按钮,可能会更晚,我想知道哪种方式更好?
标准是资源消耗.

解决方法 显然是第二个.因为在第一次的情况下,UIVIEw.animateWithDuration被称为多次(buttonGroup中的总按钮)次.这不是有效的编程,动画也变得不稳定.但是在第二个的情况下,UIVIEw.animateWithDuration只调用了一次并完成了相同的结果. 总结

以上是内存溢出为你收集整理的ios – 动画效果全部内容,希望文章能够帮你解决ios – 动画效果所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1029641.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存