使用块动画方法的 iPhone 翻转视图

发布于 2024-10-06 14:50:33 字数 108 浏览 2 评论 0原文

你好 我一直在寻找这个问题的答案,但没有成功。 我正在尝试翻转 iPhone 应用程序上的视图。我不想使用通常的 iOS3 方法,而是想使用块方法来设置过渡动画。 任何人都可以建议一段代码来提供帮助吗?

Hi
I have looked without success for the answer to this.
Am trying to flip views on iphone app. Rather than using the usual iOS3 methods I want to use block methods to animate the transition.
Can anyone suggest a snippet of code to help please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夜巴黎 2024-10-13 14:50:33

我尝试了上面建议的 animateWithDuration 方法,但它不起作用。在我使用以下命令之前我无法让它工作:

[UIView transitionFromView:viewOld 
                    toView:viewNew
                  duration:.75 
                   options:UIViewAnimationOptionTransitionFlipFromLeft | UIViewAnimationCurveEaseIn 
                completion:^(BOOL finished)
                {
                    // cleanup viewOld
                }
 ];

I tried the animateWithDuration method suggested above, and it didn't work. I couldn't get it working until I used the following:

[UIView transitionFromView:viewOld 
                    toView:viewNew
                  duration:.75 
                   options:UIViewAnimationOptionTransitionFlipFromLeft | UIViewAnimationCurveEaseIn 
                completion:^(BOOL finished)
                {
                    // cleanup viewOld
                }
 ];
自由如风 2024-10-13 14:50:33
[UIView animateWithDuration:0.5
                      delay:0.0 
                    options:UIViewAnimationOptionTransitionFlipFromLeft 
                 animations:^{
                                 // Exchange the views here
                                 [view1 removeFromSuperview];
                                 [mySuperview addSubview:view2]; 
                             }
                 completion:NULL];
[UIView animateWithDuration:0.5
                      delay:0.0 
                    options:UIViewAnimationOptionTransitionFlipFromLeft 
                 animations:^{
                                 // Exchange the views here
                                 [view1 removeFromSuperview];
                                 [mySuperview addSubview:view2]; 
                             }
                 completion:NULL];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文