Skip to content

Commit

Permalink
added audio resource
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Nov 6, 2009
1 parent 4c574f8 commit 8bde18f
Show file tree
Hide file tree
Showing 15 changed files with 892 additions and 14 deletions.
22 changes: 22 additions & 0 deletions Events/Classes/EventsAppDelegate.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//
// EventsAppDelegate.h
// Events
//
// Created by David Nolen on 11/5/09.
// Copyright David Nolen 2009. All rights reserved.
//

#import <UIKit/UIKit.h>

@class EventsViewController;

@interface EventsAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
EventsViewController *viewController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet EventsViewController *viewController;

@end

33 changes: 33 additions & 0 deletions Events/Classes/EventsAppDelegate.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
//
// EventsAppDelegate.m
// Events
//
// Created by David Nolen on 11/5/09.
// Copyright David Nolen 2009. All rights reserved.
//

#import "EventsAppDelegate.h"
#import "EventsViewController.h"

@implementation EventsAppDelegate

@synthesize window;
@synthesize viewController;


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

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


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


@end
16 changes: 16 additions & 0 deletions Events/Classes/EventsViewController.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// EventsViewController.h
// Events
//
// Created by David Nolen on 11/5/09.
// Copyright David Nolen 2009. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface EventsViewController : UIViewController {

}

@end

65 changes: 65 additions & 0 deletions Events/Classes/EventsViewController.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
//
// EventsViewController.m
// Events
//
// Created by David Nolen on 11/5/09.
// Copyright David Nolen 2009. All rights reserved.
//

#import "EventsViewController.h"

@implementation EventsViewController



/*
// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
// Custom initialization
}
return self;
}
*/

/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/


/*
// 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)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
30 changes: 30 additions & 0 deletions Events/Events-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
<string>MainWindow</string>
</dict>
</plist>
Loading

0 comments on commit 8bde18f

Please sign in to comment.