我想知道是否有办法动画UIWebView的大小和位置.如果我这样做:
[UIView animateWithDuration:1.0 animations:^{ self.frame = CGRectMake(20.0, 20.0, 80.0, 80.0); }];
要么
[UIView beginAnimations:@"zoomIn" context:nil]; [UIView setAnimationDuration:2.75]; [UIView setAnimationDelegate: self]; self.frame = CGRectMake(20.0, 20.0, 80.0, 80.0); [UIView commitAnimations];
虽然有一个灰色的盒子在做动画,但WebView的内容会在没有动画的情况下立即切换到新的大小.(scalesPageToFit属性设置为YES)
有什么建议吗?