如何使用Xcode 5获得Pixate v2实时CSS



我已经成功地将pixate 2.0.1与XCode 5一起用于ios 7项目。它真的很棒!使用实时CSS会更棒。这基本上是iPhone/iPad模拟器在编辑和保存css文件时实时更新的地方。现在一路走来都是樱桃。但不幸的是,我还没能让它发挥作用。我遵循Paul Colton在这里给出的指示:http://youtu.be/rjNrNIyEL_c.但它适用于Pixate的第1版,并且使用了现在已经过时的PXEngine语法。

有人知道如何在Pixate 2.0.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
}

希望这能有所帮助。

相关内容

  • 没有找到相关文章