--- a/cocoaTouch/SettingsViewController.h Wed Jan 13 09:41:35 2010 +0000
+++ b/cocoaTouch/SettingsViewController.h Thu Jan 14 16:38:43 2010 +0000
@@ -10,7 +10,21 @@
@interface SettingsViewController : UIViewController {
-
+ UITextField *username;
+ UITextField *password;
+ UISwitch *musicOn;
+ UISwitch *effectsOn;
+ UISlider *volumeSlider;
+ UILabel *volumeLabel;
}
+@property (nonatomic, retain) IBOutlet UITextField *username;
+@property (nonatomic, retain) IBOutlet UITextField *password;
+@property (nonatomic, retain) IBOutlet UISwitch *musicOn;
+@property (nonatomic, retain) IBOutlet UISwitch *effectsOn;
+@property (nonatomic, retain) IBOutlet UISlider *volumeSlider;
+@property (nonatomic, retain) IBOutlet UILabel *volumeLabel;
+-(IBAction) sliderChanged: (id)sender;
+-(IBAction) backgroundTap: (id)sender;
+-(IBAction) textFieldDoneEditing: (id)sender;
@end