Sha256: 27bcf2091b22c4d85332564e51f2bdcdc6feaa6569b90f12082cf29cdcb5afc1

Contents?: true

Size: 730 Bytes

Versions: 8

Compression:

Stored size: 730 Bytes

Contents

//
//  AppDelegate_Phone.m
//  Universal
//
//  Created by Sam Soffes on 4/12/10.
//  Copyright Sam Soffes 2010. All rights reserved.
//

#import "AppDelegate_Phone.h"
#import "TestViewController_Phone.h"

@implementation AppDelegate_Phone

#pragma mark -
#pragma mark UIApplicationDelegate
#pragma mark -

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
	TestViewController_Phone *viewController = [[TestViewController_Phone alloc] init];
	navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
	[viewController release];
	
	[window addSubview:navigationController.view];
	[window makeKeyAndVisible];
	return YES;
}

@end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
iCuke-0.7.0 app/iPhone/AppDelegate_Phone.m
iCuke-0.6.6 app/iPhone/AppDelegate_Phone.m
iCuke-0.6.5 app/iPhone/AppDelegate_Phone.m
iCuke-0.6.4 app/iPhone/AppDelegate_Phone.m
iCuke-0.6.3 app/iPhone/AppDelegate_Phone.m
iCuke-0.6.2 app/iPhone/AppDelegate_Phone.m
iCuke-0.6.1 app/iPhone/AppDelegate_Phone.m
iCuke-0.6.0 app/iPhone/AppDelegate_Phone.m