SVGTextLayer.m 328 B

12345678910111213141516171819202122
  1. //
  2. // SVGTextLayer.m
  3. // SVGKit-iOS
  4. //
  5. // Created by lizhuoli on 2018/11/6.
  6. // Copyright © 2018 na. All rights reserved.
  7. //
  8. #import "SVGTextLayer.h"
  9. #import "SVGKDefine.h"
  10. @implementation SVGTextLayer
  11. - (BOOL)contentsAreFlipped {
  12. #if SVGKIT_MAC
  13. return YES;
  14. #else
  15. return [super contentsAreFlipped];
  16. #endif
  17. }
  18. @end