动画自动布局约束不起作用

时间:2017-04-06 23:32:20

标签: ios autolayout uiviewanimation ios-charts

iOS 10,Swift 3.1

我在cognitoUser.getUserAttributes(function(err, result) { if (err) { alert(err); return; } for (i = 0; i < result.length; i++) { console.log('attribute ' + result[i].getName() + ' has value ' + result[i].getValue()); } }); 内有一个名为UIView的{​​{1}},我试图制作动画。基本上当有人点击图表时,会出现一个弹出窗口,我希望它能将graphPopupUITableViewCell设置为动画。

除弹出窗口的动画外,一切正常。以下是它现在的样子: enter image description here

我希望弹出窗口滑动从点到点的位置。这是我的代码:

x

知道我可能做错了什么吗?如果我完全删除动画位,它的行为方式相同,但我知道正在调用动画。

有什么想法吗?

1 个答案:

答案 0 :(得分:5)

尝试使用self.layoutIfNeeded()代替self.graphPopup.layoutIfNeeded()