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