aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
diff options
context:
space:
mode:
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.h28
1 files changed, 28 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
new file mode 100644
index 00000000..37fd2af4
--- /dev/null
+++ b/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
@@ -0,0 +1,28 @@
+//
+// SettingsViewController.h
+// iOS UI Test
+//
+// Created by Jonathan Willing on 4/8/13.
+// Copyright (c) 2013 AppJon. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import <mailcore/mailcore.h>
+
+extern NSString * const UsernameKey;
+extern NSString * const PasswordKey;
+
+@protocol SettingsViewControllerDelegate;
+
+@interface SettingsViewController : UIViewController
+
+@property (weak, nonatomic) IBOutlet UITextField *emailTextField;
+@property (weak, nonatomic) IBOutlet UITextField *passwordTextField;
+@property (nonatomic, weak) id<SettingsViewControllerDelegate> delegate;
+- (IBAction)done:(id)sender;
+
+@end
+
+@protocol SettingsViewControllerDelegate <NSObject>
+- (void)settingsViewControllerFinished:(SettingsViewController *)viewController;
+@end \ No newline at end of file