Statistics
| Branch: | Revision:

root / asi-http-request-with-pithos / iPhone Sample / iPhoneSampleAppDelegate.m @ be116d22

History | View | Annotate | Download (598 Bytes)

1
//
2
//  iPhoneSampleAppDelegate.m
3
//  Part of the ASIHTTPRequest sample project - see http://allseeing-i.com/ASIHTTPRequest for details
4
//
5
//  Created by Ben Copsey on 07/11/2008.
6
//  Copyright All-Seeing Interactive 2008. All rights reserved.
7
//
8

    
9
#import "iPhoneSampleAppDelegate.h"
10

    
11
@implementation iPhoneSampleAppDelegate
12

    
13
- (void)applicationDidFinishLaunching:(UIApplication *)application
14
{
15
	[[tabBarController view] setFrame:CGRectMake(0, 0, 320, 480)];
16
	[window addSubview:[tabBarController view]];
17
}
18

    
19
- (void)dealloc
20
{
21
    [window release];
22
    [super dealloc];
23
}
24

    
25
@synthesize window;
26

    
27
@end
28