动画不生效调用方式如下:
[UIView animateWithDuration:1 animations:^{
self.constraint.constant = height;
[self.view layoutIfNeeded];
}completion:^(BOOL finished) {
}];
修改方式如下:
[UIView animateWithDuration:1 animations:^{
self.constraint.constant = -height;
[self.view layoutIfNeeded];
}completion:^(BOOL finished) {
}];
网友评论