我有一个垂直居中的注册表单。
我想在键盘出现时动画显示它。
但是我执行了:
1-删除Align center Y to: Superview
2-挂钩到键盘架
3-根据键盘框架安装约束
在没有动画的情况下进行非常静态的位移。
@IBOutlet weak var centerVertically: NSLayoutConstraint!
@IBOutlet weak var bottomDistance: NSLayoutConstraint!
(...)
func keyboardWillShow(notification: NSNotification) {
var info = notification.userInfo!
let keyboardFrame: CGRect = (info[UIKeyboardFrameEndUserInfoKey] as! NSValue).CGRectValue()
bottomDistance.constant = keyboardFrame.size.height + 20
UIView.animateWithDuration(2.0) { () -> Void in
self.view.removeConstraint(self.centerVertically)
self.view.addConstraint(self.bottomDistance)
}
}
func keyboardWillHide(notification: NSNotification) {
UIView.animateWithDuration(2.0) { () -> Void in
self.view.removeConstraint(self.bottomDistance)
self.view.addConstraint(self.centerVertically)
}
}
如何正确设置过渡动画?
答案 0 :(得分:1)
偶然的事情,首先你可以进入键盘移动的动画循环,这样你的动画就会在同一时间/持续时间内动画化。
其次,不是添加和删除约束(这将导致视图在没有动画的情况下捕捉到位),而是更新动画块内部约束的常量值。这是我在Objective-C中使用的一个片段,swift版本应该是微不足道的。
[[NSNotificationCenter defaultCenter] addObserverForName:UIKeyboardWillHideNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification * _Nonnull note) {
UIViewAnimationCurve curve = [[note.userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey] integerValue];
double duration = [[note.userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
[UIView animateWithDuration:duration
delay:0
options:UIViewAnimationOptionBeginFromCurrentState
animations:^{
[UIView setAnimationCurve:curve];
this.verticalConstraint.constant = 100.0f;
[this.view layoutIfNeeded];
}
completion:nil];
[UIView commitAnimations];
}];