Merge pull request #506 from andrewcsmith/patch-2
[supercollider.git] / server / scsynth / iPhone / iscsynthAppDelegate.m
bloba864fabab078c4c8ee6a50130fa880f43cb8fca6
1 //
2 //  iscsynthAppDelegate.m
3 //  iscsynth
4 //
5 //  Created by Axel Balley on 20/10/08.
6 //  Copyright __MyCompanyName__ 2008. All rights reserved.
7 //
9 #import "iscsynthAppDelegate.h"
11 @implementation iscsynthAppDelegate
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