我已经成功地将pixate 2.0.1与ios 7项目上的XCode 5配合使用。真的很棒!使用Real Time CSS会更加棒极了。这基本上是在编辑和保存css文件时iPhone / iPad模拟器将实时更新的位置。现在那只是一路樱桃。但不幸的是,我还没有能够让它发挥作用。我按照保罗科尔顿在这里给出的指示:http://youtu.be/rjNrNIyEL_c。但它适用于Pixate的第1版,并使用现在过时的PXEngine语法。
有人知道如何在Pixate 2.0.1版本中使用它吗?
答案 0 :(得分:2)
假设您已按照安装版本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
}
希望这有帮助。