mirror of
https://github.com/moparisthebest/app-UI
synced 2024-11-16 06:05:03 -05:00
48 lines
1.0 KiB
Mathematica
48 lines
1.0 KiB
Mathematica
|
//
|
||
|
// MainViewController.m
|
||
|
// RottenTomatoes
|
||
|
//
|
||
|
#import "MainViewController.h"
|
||
|
|
||
|
@implementation MainViewController
|
||
|
|
||
|
- (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
|
||
|
|
||
|
- (void)viewDidLoad
|
||
|
{
|
||
|
[super viewDidLoad];
|
||
|
// Do any additional setup after loading the view from its nib.
|
||
|
}
|
||
|
|
||
|
- (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 [super shouldAutorotateToInterfaceOrientation:interfaceOrientation];
|
||
|
}
|
||
|
|
||
|
@end
|