我有一个 View ,我想根据动画 block 内的顶部间距约束移动它。
这是我使用的代码。约束在变化,但框架还是一样的;我该怎么办?
我有一个 IBOutlet 约束名为:topConstraint
[UIView animateWithDuration:0.3f animations:^{
self.topConstraint.constant -= 80 ;
[self.view layoutIfNeeded];
}];
我已经阅读了有关此的所有内容,但它似乎不起作用。
Best Answer-推荐答案 strong>
你试过了吗:
[self.view setNeedsUpdateConstraints];
关于ios - 动画约束更改不起作用,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/24696380/
|