Inherits from NSObject
Declared in BCColorScheme.h

Overview

Provides a color-scheme model for a form. To implement a shared color scheme throughout an application a class-method category can be implemented on this class.

Properties

buttonTintColor

@property (nonatomic, strong) UIColor *buttonTintColor

cellColor

@property (nonatomic, strong) UIColor *cellColor

defaultTextColor

@property (nonatomic, strong) UIColor *defaultTextColor

sectionTitleColor

@property (nonatomic, strong) UIColor *sectionTitleColor

selectedCellColor

@property (nonatomic, strong) UIColor *selectedCellColor

selectedTextColor

@property (nonatomic, strong) UIColor *selectedTextColor

Class Methods

defaultColorScheme

+ (instancetype)defaultColorScheme

schemeWithCellColor:selectedCellColor:sectionTitleColor:defaultTextColor:selectedTextColor:buttonTintColor:

+ (instancetype)schemeWithCellColor:(UIColor *)cellColor selectedCellColor:(UIColor *)selectedCellColor sectionTitleColor:(UIColor *)sectionTitleColor defaultTextColor:(UIColor *)defaultTextColor selectedTextColor:(UIColor *)selectedTextColor buttonTintColor:(UIColor *)buttonTintColor

Instance Methods

initWithCellColor:selectedCellColor:sectionTitleColor:defaultTextColor:selectedTextColor:buttonTintColor:

- (id)initWithCellColor:(UIColor *)cellColor selectedCellColor:(UIColor *)selectedCellColor sectionTitleColor:(UIColor *)sectionTitleColor defaultTextColor:(UIColor *)defaultTextColor selectedTextColor:(UIColor *)selectedTextColor buttonTintColor:(UIColor *)buttonTintColor