The set of Categories that will help you clean, reduce, order and separate all you styling code, removing it from your Views and ViewControllers to put it on a separate styling file.
To install the pod, add following line to your Podfile:
pod "Peacock"Peacock extends the existing properties that you can set with the UIAppearance protocol. In a way that you can effectively configure more than what UIView subclasses will allow you.
It's a protocol that allows us to set some properties of UIView subclasses in an "asynchronous" way. We configure our subclasses and at the same time take out the styling code from the View Controllers / subviews. The OS will be in charge of applying the desired style just before he adds a view to the Screen.
Basic usage:
[[UILabel appearance] setBackgroundColor:[UIColor whiteColor]];Most of the custom created properties start with Lyst prefix LY.
[[LYTitleLabel appearanceWhenContainedIn:[LYProductView class], nil] setLYFont:TitleFont];There's a short video and blog post on how-to's and best practices for UIAppearance and Peacock.
We highly recommend creating a class to hold all your UI-styling code in a CSS-like fashion. And calling it as soon as possible when your app launches.
Import the global header file Peacock.h on any of your implementation files.
#import "Peacock.h"Peacock extends the available configurations of the appearance protocol. It's implementation should help configure all your views frome a single location keeping your views and controllers clean of UI-styling code.
Those are the properties and methods that Peacock extends so they can be available through the UIAppearance protocol.
The following is a list of the current classes that we have extended and their available properties.
Available methods and properties to set buttons:
-(void)setLYFont:(UIFont *)font forState:(UIControlState)state;
-(void)setLYTextColor:(UIColor *)textColor forState:(UIControlState)state;
-(void)setLYTextAlignment:(NSTextAlignment)textAlignment forState:(UIControlState)state;
@property (nonatomic, strong) UIColor *appearanceTintColorAvailable properties for Labels :
@property (nonatomic, copy) UIFont *appearanceFont;
@property (nonatomic, copy) UIColor *appearanceTextColor;
@property (nonatomic, copy) UIColor *appearanceBackgroundColor;
@property (nonatomic, copy) UIColor *appearanceHighlightedTextColor;
@property (nonatomic, assign) CGFloat appearanceLineSpacingParagraphStyle;
@property (nonatomic, copy) UIColor* LYTextColor;
@property (nonatomic, copy) UIFont* LYFont;
@property (nonatomic, assign) NSLineBreakMode LYLineBreakMode;
@property (nonatomic, assign) NSTextAlignment LYTextAlignment;
@property (nonatomic, assign) CGFloat LYLineSpacing;
@property (nonatomic, assign) BOOL LYStrikeOut;Available properties for NavigationBar:
@property(nonatomic,assign,getter=isLYTranslucent) NSInteger LYTranslucent;Available properties for TableViews:
@property (nonatomic, strong) UIColor *appearanceSeparatorColor;Available properties for TextField:
@property (nonatomic, strong) UIFont* LYAppearanceFont;
@property (nonatomic, strong) UIColor* LYAppearanceTextColor;
@property (nonatomic, assign) NSTextAlignment LYAppearanceTextAlignment;Available Properties for TextView:
@property (nonatomic, strong) UIFont* LYAppearanceFont;
@property (nonatomic, strong) UIColor* LYAppearanceTextColor;
@property (nonatomic, assign) NSTextAlignment LYAppearanceTextAlignment;Lyst Engineering team.
Lyst Peacock is available under the MIT license. See the LICENSE file for more info.