project_files/HedgewarsMobile/Classes/AboutViewController.m
changeset 3703 12d17c6e8855
child 3753 bb5a0252fb56
equal deleted inserted replaced
3701:8c449776ebe6 3703:12d17c6e8855
       
     1     //
       
     2 //  AboutViewController.m
       
     3 //  Hedgewars
       
     4 //
       
     5 //  Created by Vittorio on 01/08/10.
       
     6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
       
     7 //
       
     8 
       
     9 #import "AboutViewController.h"
       
    10 #import "CommodityFunctions.h"
       
    11 
       
    12 @implementation AboutViewController
       
    13 
       
    14 
       
    15 -(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
       
    16     return rotationManager(interfaceOrientation);
       
    17 }
       
    18 
       
    19 -(void) viewDidLoad {
       
    20     self.view.frame = CGRectMake(0, 0, 320, 480);
       
    21     [super viewDidLoad];
       
    22 }
       
    23 
       
    24 -(void) didReceiveMemoryWarning {
       
    25     // Releases the view if it doesn't have a superview.
       
    26     [super didReceiveMemoryWarning];
       
    27     
       
    28     // Release any cached data, images, etc that aren't in use.
       
    29 }
       
    30 
       
    31 -(void) viewDidUnload {
       
    32     [super viewDidUnload];
       
    33     // Release any retained subviews of the main view.
       
    34     // e.g. self.myOutlet = nil;
       
    35 }
       
    36 
       
    37 -(void) dealloc {
       
    38     [super dealloc];
       
    39 }
       
    40 
       
    41 
       
    42 @end