是否有方法以编程方式从Pixate获取值?我希望能够获得一个特定的id,类,或元素的CSS值
下面是一个关于如何获取视图颜色的示例。当然,任何属性名都可以。
PXStylesheet *currentSheet = [PixateFreestyle currentApplicationStylesheet];
PXRuleSet *rules = [currentSheet ruleSetsMatchingStyleable:view][0];
PXDeclaration * decl = [rules declarationForName:@"-ios-tint-color"];
UIColor *color = decl.colorValue;
有几点需要注意,
可以有多个样式表。用户、视图和应用程序。如果是这种情况,请使用[PXRuleSet ruleSetWithMergedRuleSets:rules]
ruleSetsMatchingStyleable:是一个私有调用。你需要包含PXStylesheet-Private.h
在我的例子中,我只有一个规则集。你可能有更多,所以你可能想迭代ruleSetsMatchingStyleable: .
的响应