我想用 UIWebView 和 UIToolbar 调整 UIView 的大小作为带有动画的子视图。所以我使用以下代码:
[UIView animateWithDuration:0.3 delay:0 options:UIViewAnimationCurveEaseInOut animations:^{
self.outerView.frame = CGRectMake(self.outerView.frame.origin.x, self.outerView.frame.origin.y, self.outerView.frame.size.width - 400, self.outerView.frame.size.height);
} completion:^(BOOL finished) {
}];
当 UIToolbar 按预期随着动画调整大小时,UIWebView 的内容会在动画完成后直接跳转到新的大小。
有谁知道如何将动画应用到 UIWebView?