mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-21 06:15:15 +00:00
19 lines
404 B
Objective-C
19 lines
404 B
Objective-C
#import "TextPathMethod.h"
|
|
|
|
NSString* TextPathMethodToString( enum TextPathMethod fw )
|
|
{
|
|
return TextPathMethodStrings[fw];
|
|
}
|
|
|
|
enum TextPathMethod TextPathMethodFromString( NSString* s )
|
|
{
|
|
NSInteger i;
|
|
NSString* fw;
|
|
for (i = 0; fw = TextPathMethodStrings[i], fw != nil; i++) {
|
|
if ([fw isEqualToString:s]) {
|
|
return i;
|
|
}
|
|
}
|
|
return TextPathMethodDEFAULT;
|
|
}
|