Pixate , StylingKit. StylingKit Pixate , - , - iOS 9.
Pixate, [PixateFreestyle updateStylesForAllViews]. StylingKit.m StylingKit.h PixateFreestyle.
For example, if your project uses CSS theme updates through [PixateFreestyle updateStylesForAllViews], you can create a new method declaration in StylingKit.h, for example:
@interface StylingKit : NSObject
-(void)PixateUpdateStylesForAllViews;
-(void)OtherHiddenPixateMethod;
Then implement these methods in a file StylingKit.m.
@implementation StylingKit
-(void)PixateUpdate
{
[PixateFreestyle updateStylesForAllViews];
}
-(void)OtherHiddenPixateMethod
{
}
Finally, you can call these methods from your project using
[[StylingKit sharedKit] PixateUpdate];
[[StylingKit sharedKit] OtherHiddenPixateMethod];
source
share