【发布时间】:2023-04-09 07:09:01
【问题描述】:
尝试像这样为UIView 的宽度设置动画。但它什么也没做。为什么?注释部分更改了视图的alpha,并且有效。
UIView.animate(withDuration: 1, delay: 0, options: [.curveEaseInOut], animations: {
self.constraintLookupWidth.constant = 300
self.viewLookup.setNeedsLayout()
//self.viewLookup.alpha = 0.2
}, completion: {complete in
self.constraintLookupWidth.constant = 200
self.viewLookup.setNeedsLayout()
//self.viewLookup.alpha = 1.0
})
【问题讨论】:
标签: ios animation uiview uiviewanimation