aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
diff options
context:
space:
mode:
authorGravatar Paul Young <paulyoungonline@gmail.com>2013-06-22 16:26:43 -0400
committerGravatar Paul Young <paulyoungonline@gmail.com>2013-06-22 16:56:25 -0400
commite4cb9c41ebc8de388da788e4825eaef3ffc5f525 (patch)
tree8d9a2e3ccf7dd10e9c34d77ed71ed1a46633c248 /example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
parentcf3d7e5b4438eb47973ca7dc1a657cd18e5a12dd (diff)
Added switch to settings view controller.
* Removed setting of user default in app delegate.
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h b/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
index 2172b4d4..e5f5da48 100644
--- a/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
+++ b/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
@@ -11,6 +11,7 @@
extern NSString * const UsernameKey;
extern NSString * const PasswordKey;
extern NSString * const HostnameKey;
+extern NSString * const FetchFullMessageKey;
@protocol SettingsViewControllerDelegate;
@@ -19,6 +20,7 @@ extern NSString * const HostnameKey;
@property (weak, nonatomic) IBOutlet UITextField *emailTextField;
@property (weak, nonatomic) IBOutlet UITextField *passwordTextField;
@property (weak, nonatomic) IBOutlet UITextField *hostnameTextField;
+@property (weak, nonatomic) IBOutlet UISwitch *fetchFullMessageSwitch;
@property (nonatomic, weak) id<SettingsViewControllerDelegate> delegate;
- (IBAction)done:(id)sender;