Created
September 25, 2012 00:24
-
-
Save criccomini/3779272 to your computer and use it in GitHub Desktop.
Simple Login Screen - LoginViewController.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <UIKit/UIKit.h> | |
| @class LoginViewController; | |
| @interface LoginAppAppDelegate : NSObject { | |
| UIWindow *window; | |
| LoginViewController *loginViewController; | |
| } | |
| @property (nonatomic, retain) IBOutlet UIWindow *window; | |
| @property (nonatomic, retain) LoginViewController *loginViewController; | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment