Prefix iOS symbols with RNSVG

fixes https://github.com/react-native-community/react-native-svg/issues/603
This commit is contained in:
Ben Roth
2018-02-14 11:53:27 -08:00
parent 354f8c2719
commit b217dcaff8
43 changed files with 632 additions and 784 deletions
+3 -3
View File
@@ -8,7 +8,7 @@
#import "RNSVGTextPath.h"
#import "BezierElement.h"
#import "RNSVGBezierElement.h"
/* Some Bezier logic from PerformanceBezier */
/*
@@ -128,8 +128,8 @@ void addLine(CGPoint *last, const CGPoint *next, NSMutableArray *lines, CGFloat
lineCount = 0;
length = 0;
NSArray *elements = [BezierElement elementsFromCGPath:path];
for (BezierElement *element in elements) {
NSArray *elements = [RNSVGBezierElement elementsFromCGPath:path];
for (RNSVGBezierElement *element in elements) {
switch (element.elementType)
{
case kCGPathElementMoveToPoint: