iphone:如何做到 kCATransitionPush 没有任何淡入淡出?
我想要两个子视图之间的推送动画,就像 ScrollView 分页模式一样。
我知道我可以直接使用 UIScrollView,但是那里的逻辑与我的程序不太一样。
无论如何,我可以使用 kCATransitionPush 动画,但坏处是它在推动时会褪色。
我真的很讨厌那种褪色,有人可以告诉我如何消除那种褪色吗?
或者如何在两个子视图之间进行类似 UIScrollView 的分页推送?
非常感谢。
Possible Duplicate:
iPhone CATransition adds a fade to the start and end of any animation?
I want an animation of push between two sub views, just like ScrollView paging mode.
I know I can use UIScrollView directly, but the logic there is not so same with my program.
Anyway, I can use kCATransitionPush animation, but the bad thing of that is it does fading while pushing.
I really hate that fading, can anyone pls tell me how to remove that fading??
or how to do a UIScrollView-like paging pushing between two sub views?
Thanks very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用普通的 UIView 动画即可。您可以使用基于块的动画,但我更喜欢“传统”风格,因为它适用于 3.0:
Just use normal UIView animations. You can use block-based animations, but I prefer the "traditional" style since it works on 3.0: