Control_FunViewController.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:
iPhone
开发平台:
MultiPlatform
- //
- // Control_FunViewController.h
- // Control Fun
- //
- // Created by Jeff LaMarche on 7/2/08.
- // Copyright __MyCompanyName__ 2008. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #define kShowSegmentIndex 0
- @interface Control_FunViewController : UIViewController <UIActionSheetDelegate> {
- IBOutlet UITextField *nameField;
- IBOutlet UITextField *numberField;
- IBOutlet UILabel *sliderLabel;
- IBOutlet UISwitch *leftSwitch;
- IBOutlet UISwitch *rightSwitch;
- IBOutlet UIView *switchView;
- IBOutlet UIButton *doSomethingButton;
- }
- @property (retain, nonatomic) UITextField *nameField;
- @property (retain, nonatomic) UITextField *numberField;
- @property (nonatomic, retain) UILabel *sliderLabel;
- @property (nonatomic, retain) UISwitch *leftSwitch;
- @property (nonatomic, retain) UISwitch *rightSwitch;
- @property (nonatomic, retain) UIView *switchView;
- @property (nonatomic, retain) UIButton *doSomethingButton;
- - (IBAction)textFieldDoneEditing:(id)sender;
- - (IBAction)backgroundClick:(id)sender;
- - (IBAction)sliderChanged:(id)sender;
- - (IBAction)switchChanged:(id)sender;
- - (IBAction)toggleShowHide:(id)sender;
- - (IBAction)doSomething:(id)sender;
- @end