Sha256: a14483f24d04d065f7417dcb70c2d58ca333de97bfa8e620bb5430b8d3defc12
Contents?: true
Size: 662 Bytes
Versions: 14
Compression:
Stored size: 662 Bytes
Contents
// // ptestsAppDelegate.m // ptests // // Created by Vlad on 8/25/10. // Copyright __MyCompanyName__ 2010. All rights reserved. // #import "ptestsAppDelegate.h" #import "ptestsViewController.h" @implementation ptestsAppDelegate @synthesize window; @synthesize viewController; - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after app launch [window addSubview:viewController.view]; [window makeKeyAndVisible]; return YES; } - (void)dealloc { [viewController release]; [window release]; [super dealloc]; } @end
Version data entries
14 entries across 14 versions & 1 rubygems