diff options
| -rw-r--r-- | Video Tuneup/Classes/AssetsViewController.h | 13 | ||||
| -rw-r--r-- | Video Tuneup/Classes/AssetsViewController.m | 60 |
2 files changed, 73 insertions, 0 deletions
diff --git a/Video Tuneup/Classes/AssetsViewController.h b/Video Tuneup/Classes/AssetsViewController.h new file mode 100644 index 0000000..dc7e085 --- /dev/null +++ b/Video Tuneup/Classes/AssetsViewController.h @@ -0,0 +1,13 @@ +// +// AssetsViewController.h +// Video Tuneup +// +// Created by tw on 4/24/12. +// Copyright (c) 2012 __MyCompanyName__. All rights reserved. +// + +#import <UIKit/UIKit.h> + +@interface AssetsViewController : UIViewController + +@end diff --git a/Video Tuneup/Classes/AssetsViewController.m b/Video Tuneup/Classes/AssetsViewController.m new file mode 100644 index 0000000..5ecfc8c --- /dev/null +++ b/Video Tuneup/Classes/AssetsViewController.m @@ -0,0 +1,60 @@ +// +// AssetsViewController.m +// Video Tuneup +// +// Created by tw on 4/24/12. +// Copyright (c) 2012 __MyCompanyName__. All rights reserved. +// + +#import "AssetsViewController.h" + +@implementation AssetsViewController + +- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil +{ + self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; + if (self) { + // Custom initialization + } + return self; +} + +- (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. +} + +#pragma mark - View lifecycle + +/* +// 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]; +} +*/ + +- (void)viewDidUnload +{ + [super viewDidUnload]; + // Release any retained subviews of the main view. + // e.g. self.myOutlet = nil; +} + +- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation +{ + // Return YES for supported orientations + return YES; +} + +@end |
