如何让 Pixate v2 实时 CSS 与 Xcode 5 一起使用
Posted
技术标签:
【中文标题】如何让 Pixate v2 实时 CSS 与 Xcode 5 一起使用【英文标题】:How to get Pixate v2 Real Time CSS working with Xcode 5 【发布时间】:2013-12-11 18:14:32 【问题描述】:我已经成功地将 pixate 2.0.1 与 XCode 5 一起用于 ios 7 项目。它真的很棒!使用 Real Time CSS 会更棒。这基本上是 iPhone/iPad 模拟器在编辑和保存 css 文件时实时更新的地方。现在那只是樱桃。但不幸的是,我还不能让它工作。我遵循了 Paul Colton 在这里给出的指示:http://youtu.be/rjNrNIyEL_c。但它适用于 Pixate 版本 1,并使用现已过时的 PXEngine 语法。
有人知道如何在 Pixate 2.0.1 版中实现这一点吗?
【问题讨论】:
【参考方案1】:假设您已按照此处找到的安装 2.x 版的最新说明进行操作:http://www.pixate.com/docs/framework/ios/latest/getting-started/
然后确保您的 AppDelegate 中有以下内容:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
//Initalize Pixate
self.window.styleMode = PXStylingNormal;
//Dynamically modify the Pixate stylesheet while the Simulator is running
#ifdef DEBUG
[Pixate styleSheetFromFilePath:@"/Users/YourHomeFolder/Path/To/default.css" withOrigin:PXStylesheetOriginApplication];
Pixate.currentApplicationStylesheet.monitorChanges = YES;
#endif
希望对您有所帮助。
【讨论】:
谢谢克利夫顿。这几乎就是我想要的。以上是关于如何让 Pixate v2 实时 CSS 与 Xcode 5 一起使用的主要内容,如果未能解决你的问题,请参考以下文章
如何让 Tailwind.css 与 Gatsby.js 一起工作?
如何让 Animate.css 与 Tailwind 的 @responsive 指令一起使用?