作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 iPad 上使用以下 UIView 类方法来动画化 UIImageView 内不同图像的交换:
[UIView transitionWithView:self.view
duration:1.0
options:UIViewAnimationOptionTransitionCurlUp
animations:^{[imageView setImage:foregroundImage];}
completion:nil];
最佳答案
我遇到了同样的问题。我找到了一种解决方法,但不确定为什么您的代码(我采用的方法相同)不起作用。
我的解决方法是为要处理的页面中的所有 UI 元素创建一个包装器(UIView)。我使包装器成为 View Controller View 的唯一 subview 以及包装器的所有其他 View subview 。并将目标修改为包装器,如下所示
[UIView transitionWithView:self.wrapperView
duration:1.0
options:UIViewAnimationOptionTransitionCurlUp
animations:^{[imageView setImage:foregroundImage];}
completion:nil];
[UIView transitionWithView:self.imageView
duration:1.0
options:UIViewAnimationOptionTransitionCurlUp
animations:^{[imageView setImage:foregroundImage];}
completion:nil];
关于ios - UIViewAnimationOptionTransitionCurlUp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7691640/
在 iPad 上使用以下 UIView 类方法来动画化 UIImageView 内不同图像的交换: [UIView transitionWithView:self.view
我有一个具有以下层次结构的 View Controller : UIViewController | |- View |-presentView (UIView) |-stagedView (UIVi
我是一名优秀的程序员,十分优秀!