所以我试图将我的UIView
移出框架,但不是偏离视野,只是动画到ViewController的中心
我的代码:
UIView.animate(withDuration: 1, delay: 0, usingSpringWithDamping: 4, initialSpringVelocity: 1.0, options: [], animations: ({
self.myTextField.center.x = 1300 // just a temporary value
}), completion: nil)
print(self.passwordTextField.center.x)//---> 1300
有谁知道为什么会这样?我该如何解决?