-(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) {
        
        
    }];

}

 

相关文章: