1

我已经成功地将 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 版中使用它吗?

4

1 回答 1

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
}

希望这会有所帮助。

于 2014-01-13T20:34:10.650 回答