OliveappButtonAnimationLayer.h 641 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // OliveappButtonAnimationLayer.h
  3. // AppSampleYitu
  4. //
  5. // Created by kychen on 17/1/16.
  6. // Copyright © 2017年 Oliveapp. All rights reserved.
  7. //
  8. #import <QuartzCore/QuartzCore.h>
  9. #import <Foundation/Foundation.h>
  10. #import <UIKit/UIKit.h>
  11. @interface OliveappButtonAnimationLayer : CALayer <CAAnimationDelegate>
  12. - (instancetype)initWithFrame:(CGRect)frame;
  13. /**
  14. 炸开动画
  15. @param position <#position description#>
  16. @param array <#array description#>
  17. @param buttonLayer <#buttonLayer description#>
  18. */
  19. - (void)animationAt:(CGPoint)position
  20. withTransformArray:(NSArray *)array
  21. withParentLayer:(CALayer *)buttonLayer;
  22. @end