我还没有找到任何关于如何使用Pixate Freestyle和Xcode 5获取实时css更新的参考。如果有人可以提供AppDelegate中'didFinishLaunchingWithOptions'的代码,那将会有所帮助。谢谢。
答案 0 :(得分:1)
以下是您可以用作参考的旧问题/答案:How to get Pixate v2 Real Time CSS working with Xcode 5
请注意,Freestyle已将Pixate的基础对象重命名为PixateFreestyle。
答案 1 :(得分:0)
谢谢保罗。使用那篇文章我能够让它运作起来。这是我放在AppDelegate.m文件中的代码。
@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;
}