使用图层动画后视图动画突然消失

发布于 2025-01-06 10:32:54 字数 163 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

远昼 2025-01-13 10:32:54

我可以通过调用

[UIView setAnimationsEnabled:YES];

viewDidDissapear 和 viewWillDisappear 方法来解决此问题。

真的很奇怪,因为我从来没有在代码中的任何地方禁用视图动画。

I was able to workaround this by calling

[UIView setAnimationsEnabled:YES];

in my viewDidDissapear and viewWillDisappear methods.

Really strange since I am never disabling view animations anywhere in my code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文