Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (627 Bytes)

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

    
9
#import "iPadSampleAppDelegate.h"
10

    
11
@implementation iPadSampleAppDelegate
12

    
13
- (void)applicationDidFinishLaunching:(UIApplication *)application
14
{
15
	[window addSubview:[splitViewController view]];
16
	[window makeKeyAndVisible];
17
}
18

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

    
25

    
26
@synthesize window;
27
@synthesize splitViewController;
28
@end