EMFirstAppViewController.h 310 Bytes
#import <UIKit/UIKit.h>

@interface EMFirstAppViewController : UIViewController

@property (nonatomic, strong) IBOutlet UILabel *valueLabel;
@property (nonatomic, strong) IBOutlet UISlider *valueSlider;

-(IBAction)sliderChanged:(UISlider *)sender;
-(IBAction)sliderDidFinishChanging:(UISlider *)sender;

@end