cocoaTouch/SettingsViewController.h
changeset 2702 48fc46a922fd
parent 2701 3a8560c00f78
child 2720 a5111ec4d25f
equal deleted inserted replaced
2701:3a8560c00f78 2702:48fc46a922fd
    11 
    11 
    12 @interface SettingsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
    12 @interface SettingsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
    13 	UITextField *username;
    13 	UITextField *username;
    14 	UITextField *password;
    14 	UITextField *password;
    15 	UISwitch *musicSwitch;
    15 	UISwitch *musicSwitch;
    16 	UISwitch *effectsSwitch;
    16 	UISwitch *soundsSwitch;
    17 	UISwitch *altDamageSwitch;
    17 	UISwitch *altDamageSwitch;
    18 	UISlider *volumeSlider;
    18 	UISlider *volumeSlider;
    19 	UILabel *volumeLabel;
    19 	UILabel *volumeLabel;
    20 	UITableView *table;
    20 	UITableView *table;
    21 	UITableViewCell *volumeCell;
    21 	UITableViewCell *volumeCell;
    22 }
    22 }
    23 @property (nonatomic, retain) IBOutlet UITextField *username;
    23 @property (nonatomic, retain) IBOutlet UITextField *username;
    24 @property (nonatomic, retain) IBOutlet UITextField *password;
    24 @property (nonatomic, retain) IBOutlet UITextField *password;
    25 @property (nonatomic, retain) UISwitch *musicSwitch;
    25 @property (nonatomic, retain) UISwitch *musicSwitch;
    26 @property (nonatomic, retain) UISwitch *effectsSwitch;
    26 @property (nonatomic, retain) UISwitch *soundsSwitch;
    27 @property (nonatomic, retain) UISwitch *altDamageSwitch;
    27 @property (nonatomic, retain) UISwitch *altDamageSwitch;
    28 @property (nonatomic, retain) IBOutlet UISlider *volumeSlider;
    28 @property (nonatomic, retain) IBOutlet UISlider *volumeSlider;
    29 @property (nonatomic, retain) IBOutlet UILabel *volumeLabel;
    29 @property (nonatomic, retain) IBOutlet UILabel *volumeLabel;
    30 @property (nonatomic, retain) IBOutlet UITableView *table;
    30 @property (nonatomic, retain) IBOutlet UITableView *table;
    31 @property (nonatomic, retain) IBOutlet UITableViewCell *volumeCell;
    31 @property (nonatomic, retain) IBOutlet UITableViewCell *volumeCell;