Skip to content

Commit

Permalink
first commit, basic nav structure
Browse files Browse the repository at this point in the history
  • Loading branch information
saurb authored and saurb committed Dec 18, 2009
0 parents commit ab0dff6
Show file tree
Hide file tree
Showing 68 changed files with 5,048 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Classes/GeoAudio_RecorderAppDelegate.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
//
// GeoAudio_RecorderAppDelegate.h
// GeoAudio Recorder
//
// Created by saurb on 12/17/09.
// Copyright Arizona State University 2009. All rights reserved.
//

#import <UIKit/UIKit.h>
@class TracksNavController;

@interface GeoAudio_RecorderAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
UITabBarController* rootController;
TracksNavController* tracksNavController;

}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController* rootController;
@property (nonatomic, retain) IBOutlet TracksNavController* tracksNavController;


@end

35 changes: 35 additions & 0 deletions Classes/GeoAudio_RecorderAppDelegate.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
//
// GeoAudio_RecorderAppDelegate.m
// GeoAudio Recorder
//
// Created by saurb on 12/17/09.
// Copyright Arizona State University 2009. All rights reserved.
//

#import "GeoAudio_RecorderAppDelegate.h"
#import "TracksNavController.h"

@implementation GeoAudio_RecorderAppDelegate

@synthesize window;
@synthesize rootController;
@synthesize tracksNavController;

- (void)applicationDidFinishLaunching:(UIApplication *)application {

// Override point for customization after application launch
[window addSubview:rootController.view];
[window makeKeyAndVisible];
}


- (void)dealloc {
[tracksNavController release];
[rootController release];
[window release];
[super dealloc];
}



@end
15 changes: 15 additions & 0 deletions Classes/RecorderViewController.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// RecorderViewController.h
// GeoAudio Recorder
//
// Created by saurb on 12/17/09.
// Copyright 2009 Arizona State University. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface RecorderViewController : UIViewController {

}

@end
62 changes: 62 additions & 0 deletions Classes/RecorderViewController.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
//
// RecorderViewController.m
// GeoAudio Recorder
//
// Created by saurb on 12/17/09.
// Copyright 2009 Arizona State University. All rights reserved.
//

#import "RecorderViewController.h"


@implementation RecorderViewController

/*
// The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
// Custom initialization
}
return self;
}
*/

/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
}
*/

/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/

- (void)viewDidLoad
{
[super viewDidLoad];
}

- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}


- (void)dealloc {
[super dealloc];
}


@end
Loading

0 comments on commit ab0dff6

Please sign in to comment.