12345678910111213141516171819202122 |
- //
- // SVGTextLayer.m
- // SVGKit-iOS
- //
- // Created by lizhuoli on 2018/11/6.
- // Copyright © 2018 na. All rights reserved.
- //
- #import "SVGTextLayer.h"
- #import "SVGKDefine.h"
- @implementation SVGTextLayer
- - (BOOL)contentsAreFlipped {
- #if SVGKIT_MAC
- return YES;
- #else
- return [super contentsAreFlipped];
- #endif
- }
- @end
|