当前位置:  开发笔记 > Android > 正文

UIWebView和动画

如何解决《UIWebView和动画》经验,为你挑选了0个好方法。

我想知道是否有办法动画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)

有什么建议吗?

推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有