Files
react-native-svg/ios/Text/TextLengthAdjust.m
2017-08-24 19:14:11 +03:00

18 lines
461 B
Objective-C

#import "TextLengthAdjust.h"
NSString* TextLengthAdjustToString( enum TextLengthAdjust fw )
{
return TextLengthAdjustStrings[fw];
}
enum TextLengthAdjust TextLengthAdjustFromString( NSString* s )
{
const NSUInteger l = sizeof(TextLengthAdjustStrings) / sizeof(NSString*);
for (NSUInteger i = 0; i < l; i++) {
if ([s isEqualToString:TextLengthAdjustStrings[i]]) {
return i;
}
}
return TextLengthAdjustDEFAULT;
}