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

前端 未结 3 733
星月不相逢
星月不相逢 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条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-06 07:24

    Try this way...

    //set Intial Frame of view
    
    [UIView transitionWithView: self.view
                      duration: 1.5f
                       options: UIViewAnimationOptionTransitionFlipFromRight
                    animations: ^(void)
     {
     }
                    completion: ^(BOOL isFinished)
     {
          // set the Final Frame of the View
     }];
    

提交回复
热议问题