How can I flip and enlarge a UIView it at the same time like iOS 7 iPad App Store?

前端 未结 3 753
星月不相逢
星月不相逢 2021-01-06 06:49

The iPad iOS 7 App Store has a pretty cool animation for when you click on an app icon (from the featured list when the icon is smaller, not a search result). Here is a pict

3条回答
  •  旧时难觅i
    2021-01-06 07:47

    Try this code

     [UIView transitionFromView:'yourOriginView'
                            toView:'yourDestination'
                          duration:0.65f
                           options:UIViewAnimationOptionTransitionFlipFromLeft/
                        completion:^(BOOL finished){
    //    Do your presentation here
                        }];
    

提交回复
热议问题