diff options
| author | Teddy Wing | 2012-04-24 14:25:53 -0400 |
|---|---|---|
| committer | Teddy Wing | 2012-04-24 14:25:53 -0400 |
| commit | 931df7ee7d144ccfe9cbc33e381bf46910d0054c (patch) | |
| tree | c5d4933664273a8dbf1312ad7d1e1c951f01ed8d | |
| parent | 33f1899fcb0619418d15da2009e6d2ffbf2a5688 (diff) | |
| download | Video-Tuneup-931df7ee7d144ccfe9cbc33e381bf46910d0054c.tar.bz2 | |
Added AssetsViewController to show the video library in a tableview
| -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 |
