LOTAnimationView_Internal.h 493 B

12345678910111213141516171819202122
  1. //
  2. // LOTAnimationView_Internal.h
  3. // Lottie
  4. //
  5. // Created by Brandon Withrow on 12/7/16.
  6. // Copyright © 2016 Brandon Withrow. All rights reserved.
  7. //
  8. #import "LOTAnimationView.h"
  9. typedef enum : NSUInteger {
  10. LOTConstraintTypeAlignToBounds,
  11. LOTConstraintTypeAlignToLayer,
  12. LOTConstraintTypeNone
  13. } LOTConstraintType;
  14. @interface LOTAnimationView () <CAAnimationDelegate>
  15. - (CALayer * _Nullable)layerForKey:(NSString * _Nonnull)keyname;
  16. - (NSArray * _Nonnull)compositionLayers;
  17. @end