【发布时间】:2016-11-17 08:50:14
【问题描述】:
我尝试为 isHidden 设置动画,它似乎工作正常,但如果我通过将 yes 设置为 true 5 次错误地为 isHidden=false 设置了 5 次动画,那么有时我应该为 isHidden 设置动画=true 2 或更多时间让我的 UIView 可见!
我错过了什么吗?
if (yes)
{
UIView.animate(withDuration: 0.3, delay:0, animations: {
myLabel.isHidden=false
}
}
else
{
UIView.animate(withDuration: 0.3, delay:0, animations: {
myLabel.isHidden=true
}
}
【问题讨论】:
标签: ios animation uiview swift3