如何通过类似动画的Bookopening删除启动视图?

时间:2012-07-04 08:54:56

标签: iphone ios

我有一个Iphone应用程序,我使用imageview创建一个启动画面。在删除启动功能我删除该启动视图并添加导航控制器视图。现在我需要删除该启动视图像路径应用程序中那样开放像动画一样的书。任何人都可以帮助我做到这一点吗?

1 个答案:

答案 0 :(得分:0)

如果你想让它看起来像书籍封面开头,你可以做一个动画块,只需将frame属性设置为零宽度:

[UIView animateWithDuration:0.2
                          delay:0
                        options:UIViewAnimationCurveEaseInOut
                     animations:^{
                         self.view.frame = CGRectMake(0,0,0,self.view.frame.size.height);

                     } 
                     completion:^ (BOOL finished){
                         [self.navigationController popViewControllerAnimated:NO];
                     }
     ];

否则,只需使用rckoenes

中提到的内置翻页动画