Skip to content

Instantly share code, notes, and snippets.

@brwnx
Created December 24, 2009 10:00
Show Gist options
  • Save brwnx/263115 to your computer and use it in GitHub Desktop.
Save brwnx/263115 to your computer and use it in GitHub Desktop.
#import "HelloWorldAppDelegate.h"
@implementation HelloWorldAppDelegate
@synthesize window;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
NSLog(@"Hello!");
[window makeKeyAndVisible];
}
- (void)dealloc {
[window release];
[super dealloc];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment