Skip to content

Instantly share code, notes, and snippets.

@Beniamiiin
Last active September 8, 2016 15:59
Show Gist options
  • Save Beniamiiin/fdfffe656fbbe6cab75892ee0a42322c to your computer and use it in GitHub Desktop.
Save Beniamiiin/fdfffe656fbbe6cab75892ee0a42322c to your computer and use it in GitHub Desktop.
- (void)startQrCodeImageViewRotateAnimation {
[UIView animateWithDuration:kSCIQRCodeImageViewRotateAnimationDuration
delay:kSCIQRCodeImageViewRotateDelay
usingSpringWithDamping:kSCIQRCodeImageViewRotateSpringDamping
initialSpringVelocity:kSCIQRCodeImageViewRotateSpringVelocity
options:UIViewAnimationOptionCurveEaseInOut
animations:^{
self.qrCodeImageView.alpha = 1.0;
} completion:^(BOOL finished) {
[self startQrCodeImageViewRotateAnimation];
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment