SeminaaAppDelegate.m
IVIS
[편집] seminaaAppDelegate.m
#import "seminaaAppDelegate.h"
@implementation seminaaAppDelegate
@synthesize window;
@synthesize se;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen]bounds]];
se = [[uicontrol alloc]init];
[window addSubview:se.view];
// Override point for customization after application launch
[window makeKeyAndVisible];
}
- (void)dealloc {
[se release];
[window release];
[super dealloc];
}
@end
