Blame view

ios-examples-13.4.9/FirstApp/FirstAppExample/EMFirstAppViewController.h 310 Bytes
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