在iphone中实现隐藏Splash_View

需要隐藏Page curl Style中的 Splash_View ,然后将它移动到另一个类中。

Default.png

请高手指点一下,谢谢。

最简单的方法就是在第一个ViewDidLoad中加载同样的图片,然后这样操作

[UIView transitionWithView:self.view duration:0.4
                     delay:0.0
                     options:UIViewAnimationOptionTransitionCurlUp
                     animations:^{
                     //hide splash here
                     }
                     completion:^(BOOL finished){ 

                     }];