-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [UIView transitionWithView:_imageViewFirst duration:1.0f options:UIViewAnimationOptionTransitionFlipFromTop animations:^{
        _imageViewFirst.alpha=0;
        _imageViewFirst.center=CGPointMake(50, 20);
        
    } completion:^(BOOL finished) {
        
        
    }];

}

 

相关文章:

  • 2021-07-06
  • 2022-12-23
  • 2021-07-11
  • 2021-10-18
  • 2022-12-23
  • 2021-08-31
  • 2022-12-23
猜你喜欢
  • 2021-05-19
  • 2022-01-21
  • 2021-07-22
  • 2022-02-19
  • 2021-10-21
  • 2022-12-23
  • 2021-07-26
相关资源
相似解决方案