使用图层动画后视图动画突然消失
我正在使用 CABasicAnimation 和 CATransaction 为自定义 UIView 中的某些图层设置动画。
但是,当使用导航控制器的后退按钮返回到我的应用程序的其余部分时,导航控制器不再有动画效果。即使去任何其他视图也不会。
我使用的是 iOS5 的 iPad。
I'm using CABasicAnimation and CATransaction to animate some layers in my custom UIView.
However, when after that returning to the rest of my app using a navigation controller's back button, the navigation controller does not animate anymore. Not even when then going to any other view.
I am using an iPad with iOS5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以通过调用
viewDidDissapear 和 viewWillDisappear 方法来解决此问题。
真的很奇怪,因为我从来没有在代码中的任何地方禁用视图动画。
I was able to workaround this by calling
in my viewDidDissapear and viewWillDisappear methods.
Really strange since I am never disabling view animations anywhere in my code.