equal
deleted
inserted
replaced
1 // |
|
2 // TeamEditViewController.m |
|
3 // hwengine |
|
4 // |
|
5 // Created by Vittorio on 08/01/10. |
|
6 // Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 // |
|
8 |
|
9 #import "TeamEditViewController.h" |
|
10 |
|
11 |
|
12 @implementation TeamEditViewController |
|
13 |
|
14 /* |
|
15 // The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad. |
|
16 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { |
|
17 if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) { |
|
18 // Custom initialization |
|
19 } |
|
20 return self; |
|
21 } |
|
22 */ |
|
23 |
|
24 /* |
|
25 // Implement viewDidLoad to do additional setup after loading the view, typically from a nib. |
|
26 - (void)viewDidLoad { |
|
27 [super viewDidLoad]; |
|
28 } |
|
29 */ |
|
30 |
|
31 // Override to allow orientations other than the default portrait orientation. |
|
32 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
33 // Return YES for supported orientations |
|
34 return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); |
|
35 } |
|
36 |
|
37 - (void)didReceiveMemoryWarning { |
|
38 // Releases the view if it doesn't have a superview. |
|
39 [super didReceiveMemoryWarning]; |
|
40 |
|
41 // Release any cached data, images, etc that aren't in use. |
|
42 } |
|
43 |
|
44 - (void)viewDidUnload { |
|
45 // Release any retained subviews of the main view. |
|
46 // e.g. self.myOutlet = nil; |
|
47 } |
|
48 |
|
49 |
|
50 - (void)dealloc { |
|
51 [super dealloc]; |
|
52 } |
|
53 |
|
54 |
|
55 @end |
|