mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
18 lines
461 B
Objective-C
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;
|
|
}
|