Skip to content

Instantly share code, notes, and snippets.

@akinLiu
Created June 18, 2012 05:59
Show Gist options
  • Save akinLiu/2947070 to your computer and use it in GitHub Desktop.
Save akinLiu/2947070 to your computer and use it in GitHub Desktop.
放大缩小动画
[UIView animateWithDuration:0.1
animations:^{
self.testView.transform = CGAffineTransformMakeScale(1.2,1.2);
}
completion:^(BOOL finished) {
[UIView animateWithDuration:0.05
animations:^{
self.testView.transform = CGAffineTransformMakeScale(0.9,.9);
}
completion:^(BOOL finished) {
[UIView animateWithDuration:0.05
animations:^{
self.testView.transform = CGAffineTransformMakeScale(1.0,1.0);
}];
}];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment