[UIView
transitionFromView:_ballImageView
toView:_ballOverImageView
duration:
1.0
options:
UIViewAnimationOptionTransitionFlipFromLeft+UIViewAnimationOptionCurveEaseInOut
completion:^(BOOL
finished) { CGRect rect =
_cleanTipBjView.frame;
rect.origin.y
+= 36;
_cleanTipBjView.frame
= rect; _cleanTipSizeLabel.text
= @"6"; [UIView
animateWithDuration:0.5
animations:^{
_cleanTipBjView.alpha
= 1.0; }completion:nil];
[UIView
animateWithDuration:0.8
animations:^{
_cleanFinishedBjView.alpha
= 1.0; }completion:nil];
} ];