Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
ColorSwitcher.h
Go to the documentation of this file.
1 //
2 // ColourSwitcher.h
3 // prolific
4 //
5 // Created by Tope on 21/02/2012.
6 // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface ColorSwitcher : NSObject
12 
13 -(id)init;
14 
15 @property (nonatomic, retain) NSMutableDictionary* modifiedImages;
16 
17 @property (nonatomic, assign) float hue;
18 
19 @property (nonatomic, assign) float saturation;
20 
21 @property (nonatomic, readonly) float baseHue;
22 
23 @property (nonatomic, strong) UIColor* textColor;
24 
25 -(UIImage*)getImageWithName:(NSString*)imageName;
26 
27 -(UIImage*)processImage:(UIImage*)originalImage withKey:(NSString*)key;
28 
29 -(void)configureAppWithHue:(float)theHue andSaturation:(float)theSaturation;
30 
31 @end