我使用UIView动画向上/向下移动视图(使用Autolayout) 动画在模拟器上工作,但它不在实际设备上。可能是什么问题呢?执行动画的代码在这里
[self layoutIfNeeded];
[UIView animateWithDuration:.5 animations:^{
self.animationConstraint.constant = -190;
[self bringSubviewToFront:self.containerView];
[self.containerView layoutIfNeeded];
}];
我已经检查了内存使用情况,但在制作动画时它没有超过2%。
答案 0 :(得分:-2)
模拟器设备与iOS and display size
的实际设备相同吗?