让UIView斜缩小
by 伍雪颖
[UIView animateWithDuration:0.5 animations:^{ CGAffineTransform t = CGAffineTransformMakeRotation(M_PI * .3); t = CGAffineTransformScale(t, .75, .75); _moveView.transform = t; } completion:^(BOOL finished) { [self drop]; }];
时间: 2024-10-15 10:28:25