Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
ColorChoiceController.h
Go to the documentation of this file.
1 //
2 // ColorChoiceController.h
3 // prolific
4 //
5 // Created by Tope on 12/03/2012.
6 // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import "ColorSwitcher.h"
11 
12 
13 
14 @interface ColorChoiceController : UIViewController
15 
16 @property (nonatomic, weak) IBOutlet UIImageView *imageView;
17 
18 @property (nonatomic, weak) IBOutlet UISlider *hueSlider;
19 @property (strong, nonatomic) IBOutlet UILabel *lblHue;
20 
21 @property (nonatomic, weak) IBOutlet UISlider * saturationSlider;
22 @property (strong, nonatomic) IBOutlet UILabel *lblSaturation;
23 
24 @property (nonatomic, strong) UIImage* image;
25 
26 -(UIImage*)modifyImage:(UIImage*)originalImage WithHue:(float)hue andSaturation:(float)saturation;
27 
28 -(IBAction)doneModifying:(id)sender;
29 
30 //-(void)finishedLinkingDB;
31 
32 
33 @end