Skip to content

Instantly share code, notes, and snippets.

@closer27
Last active January 30, 2017 01:08
Show Gist options
  • Save closer27/8eb7db74977164fe59e42657cbd8d73d to your computer and use it in GitHub Desktop.
Save closer27/8eb7db74977164fe59e42657cbd8d73d to your computer and use it in GitHub Desktop.
lifecycle
- (void)rotateLabelUp {
[UIViewanimateWithDuration:0.5 animations:^{
_label.transform = CGAffineTransformMakeRotation(0);
} completion:^(BOOL finished){
[selfrotateLabelDown];
}];
}
- (void)rotateLabelDown {
[UIViewanimateWithDuration:0.5 animations:^{
_label.transform = CGAffineTransformMakeRotation(M_PI);
} completion:^(BOOL finished){
[selfrotateLabelUp];
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment