Skip to content

Instantly share code, notes, and snippets.

@criccomini
Created September 25, 2012 00:22
Show Gist options
  • Select an option

  • Save criccomini/3779265 to your computer and use it in GitHub Desktop.

Select an option

Save criccomini/3779265 to your computer and use it in GitHub Desktop.
Simple Login Screen - LoginAppAppDelegate.h
#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