SeminaAppDelegate.m

IVIS

Jump to: navigation, 찾기

[편집] SeminaAppDelegate.m


#import "SeminaAppDelegate.h"
#import "semina.h"

@implementation SeminaAppDelegate

@synthesize window;
@synthesize se; 


- (void)applicationDidFinishLaunching:(UIApplication *)application {    
    
    // Override point for customization after app launch   
	window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
	se = [[semina alloc]initWithFrame:[window bounds]];
	window.backgroundColor = [UIColor grayColor];
	se.backgroundColor = [UIColor grayColor];
	
    [window addSubview:se];
    [window makeKeyAndVisible];
}


- (void)dealloc {
    [semina release];
    [window release];
    [super dealloc];
}


@end