|
1
2
3
4
5
6
7
8
9
10
11
|
#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
|