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

18 lines
398 B
Objective-C

#import "FontStyle.h"
NSString* FontStyleToString( enum FontStyle fw )
{
return FontStyleStrings[fw];
}
enum FontStyle FontStyleFromString( NSString* s )
{
const NSUInteger l = sizeof(FontStyleStrings) / sizeof(NSString*);
for (NSUInteger i = 0; i < l; i++) {
if ([s isEqualToString:FontStyleStrings[i]]) {
return i;
}
}
return FontStyleDEFAULT;
}