CALayer+RecursiveClone.h 450 B

12345678910111213141516171819
  1. //
  2. // CALayer+RecursiveClone.h
  3. // SVGKit-iOS
  4. //
  5. // Created by adam on 22/04/2013.
  6. // Copyright (c) 2013 na. All rights reserved.
  7. //
  8. #import <QuartzCore/QuartzCore.h>
  9. @interface CALayer (RecursiveClone)
  10. /** Since Apple decided not to expose this common and essential method ... */
  11. -(CALayer*) cloneRecursively;
  12. /** Clones ONLY this layer - none of the sublayers - but uses identical code to cloneRecursively */
  13. -(CALayer*) cloneShallow;
  14. @end