CALayer+PKDownloadButtonAnimations.h 582 B

12345678910111213141516171819
  1. //
  2. // CALayer+PKDownloadButtonAnimations.h
  3. // Download
  4. //
  5. // Created by Pavel on 31/05/15.
  6. // Copyright (c) 2015 Katunin. All rights reserved.
  7. //
  8. #import <QuartzCore/QuartzCore.h>
  9. @interface CALayer (PKDownloadButtonAnimations)
  10. - (void)addRotationAnimationWithKey:(NSString *)animationKey
  11. fullRotationDuration:(NSTimeInterval)fullRotationDuration;
  12. - (void)removeRotationAnimationWithKey:(NSString *)animationKey;
  13. - (void)removeRotationAnimationWithKey:(NSString *)animationKey
  14. fullRotationDuration:(NSTimeInterval)fullRotationDuration;
  15. @end