我有一个 UITextView 用以下方法改变它的框架animateWithDuration:animations
:
[UIView animateWithDuration:1.5 animations:^{
[_textView setFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height - keyboardSize.height-25)];
}];
是否有任何回调可以帮助我在 UITextView 动画时跟踪它的高度?