将zeplin样式指南导出文件转换为语言不可知格式?

时间:2017-02-20 00:31:30

标签: c# objective-c xamarin zeplin

Zeplin有一个样式指南,您可以将其导出为Swift或Objective C中的查找词典,最终看起来像这样;

    @implementation UIColor (OLAdditions)

+ (UIColor *)ipd_goldenYellowColor { 
    return [UIColor colorWithRed:250.0f / 255.0f green:206.0f / 255.0f blue:21.0f / 255.0f alpha:1.0f];
}

@end

// Text styles

@implementation UIFont (OLAdditions)

+ (UIFont *)ipd_titleBigH1WhiteFont {
    return [UIFont fontWithName:@".SFNSDisplay-Regular" size:58.0f];
}


+ (UIFont *)ipd_smallWhite60Font {
    return [UIFont fontWithName:@".SFNSDisplay-Regular" size:12.0f];
}

@end

我正在试图弄清楚如何在我使用C#的xamarin项目中使用这些objective-c / swift文件,我在想是否有办法将这些文件转换为xml我可以通过C#读取它们,有没有一种简单的方法可以做到这一点或者解决我的问题?

0 个答案:

没有答案