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# 读取它们,是否有简单的方法来做到这一点或更好地解决我的问题?