HelloAppDelegate.m
IVIS
[편집] HelloAppDelegate.m
#import "HelloAppDelegate.h"
#import "mainView.h"
@implementation HelloAppDelegate
@synthesize window,mobil;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Override point for customization after application launch
window = [[UIWindow alloc ] initWithFrame:[[UIScreen mainScreen] bounds]];
mobil = [[mainView alloc ] initWithFrame:[window bounds]];
window.backgroundColor = [UIColor whiteColor];
mobil.backgroundColor = [UIColor clearColor];
[window addSubview:mobil];
[window makeKeyAndVisible];
}
- (void)dealloc {
[window release];
[super dealloc];
}
@end
