class library: Spawner - don't access PriorityQueue-array
[supercollider.git] / editors / scapp / iPhone / isclangAppDelegate.m
blobc2984858b2ec422b449d1d5d81efc1b8804c39ed
1 //
2 //  isclangAppDelegate.m
3 //  isclang
4 //
5 //  Created by Axel Balley on 25/10/08.
6 //  Copyright __MyCompanyName__ 2008. All rights reserved.
7 //
9 #import "isclangAppDelegate.h"
11 @implementation isclangAppDelegate
13 @synthesize window;
16 - (void)applicationDidFinishLaunching:(UIApplication *)application {    
18     // Override point for customization after application launch
19     [window addSubview:[tabBarController view]];
20         
21         [window makeKeyAndVisible];
25 - (void)dealloc {
26     [window release];
27     [super dealloc];
31 @end