| Revision 26,
905 bytes
checked in by kpoole, 2 years ago
(diff) |
|
Episode 5
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // sync_login.h |
|---|
| 3 | // wesnoth |
|---|
| 4 | // |
|---|
| 5 | // Created by Kyle Poole on 5/10/10. |
|---|
| 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import <UIKit/UIKit.h> |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | @interface sync_login : UIViewController <UITextFieldDelegate> { |
|---|
| 13 | IBOutlet UITextField *email; |
|---|
| 14 | IBOutlet UITextField *password; |
|---|
| 15 | IBOutlet UIActivityIndicatorView *activity; |
|---|
| 16 | IBOutlet UIButton *loginButton; |
|---|
| 17 | IBOutlet UIButton *cancelButton; |
|---|
| 18 | } |
|---|
| 19 | |
|---|
| 20 | @property (nonatomic,retain) IBOutlet UITextField *email; |
|---|
| 21 | @property (nonatomic,retain) IBOutlet UITextField *password; |
|---|
| 22 | @property (nonatomic,retain) IBOutlet UIActivityIndicatorView *activity; |
|---|
| 23 | @property (nonatomic,retain) IBOutlet UIButton *loginButton; |
|---|
| 24 | @property (nonatomic,retain) IBOutlet UIButton *cancelButton; |
|---|
| 25 | |
|---|
| 26 | -(IBAction)login:(id)sender; |
|---|
| 27 | -(IBAction)cancel:(id)sender; |
|---|
| 28 | -(IBAction)hideEmailKeyboard:(id)sender; |
|---|
| 29 | -(IBAction)hidePasswordKeyboard:(id)sender; |
|---|
| 30 | -(IBAction)emailNext:(id)sender; |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | @end |
|---|
Note: See
TracBrowser
for help on using the repository browser.