Pixate Freestyle实时css

时间:2014-04-12 14:24:50

标签: ios pixate

我还没有找到任何关于如何使用Pixate Freestyle和Xcode 5获取实时css更新的参考。如果有人可以提供AppDelegate中'didFinishLaunchingWithOptions'的代码,那将会有所帮助。谢谢。

2 个答案:

答案 0 :(得分:1)

以下是您可以用作参考的旧问题/答案:How to get Pixate v2 Real Time CSS working with Xcode 5

请注意,Freestyle已将Pixate的基础对象重命名为PixateFreestyle。

答案 1 :(得分:0)

谢谢保罗。使用那篇文章我能够让它运作起来。这是我放在AppDelegate.m文件中的代码。

import“AppDelegate.h”

导入“PixateFreestyle / PixateFreestyle.h”

@implementation 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
    [PixateFreestyle styleSheetFromFilePath:@"/path/to/project/default.css" withOrigin:PXStylesheetOriginApplication];
    PixateFreestyle.currentApplicationStylesheet.monitorChanges = YES;
    #endif
    return TRUE;
}