author | smaxx |
Thu, 02 Sep 2010 19:21:41 +0200 | |
changeset 3811 | 967363197f01 |
parent 3787 | 6e84339eefee |
child 3829 | 81db3c85784b |
permissions | -rw-r--r-- |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
1 |
// |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
2 |
// AboutViewController.m |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
3 |
// Hedgewars |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
4 |
// |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
5 |
// Created by Vittorio on 01/08/10. |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
7 |
// |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
8 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
9 |
#import "AboutViewController.h" |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
10 |
#import "CommodityFunctions.h" |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
11 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
12 |
@implementation AboutViewController |
3787 | 13 |
@synthesize tableView, segmentedControl, people; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
14 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
15 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
16 |
return rotationManager(interfaceOrientation); |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
17 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
18 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
19 |
-(void) viewDidLoad { |
3787 | 20 |
self.tableView.backgroundView = nil; |
21 |
self.tableView.allowsSelection = NO; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
22 |
|
3787 | 23 |
NSString *strPath = [NSString stringWithFormat:@"%@/Settings/credits.plist",[[NSBundle mainBundle] resourcePath]]; |
24 |
NSArray *array = [[NSArray alloc] initWithContentsOfFile:strPath]; |
|
25 |
self.people = array; |
|
26 |
[array release]; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
27 |
|
3787 | 28 |
[super viewDidLoad]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
29 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
30 |
|
3753 | 31 |
-(IBAction) buttonPressed:(id) sender { |
3783 | 32 |
playSound(@"backSound"); |
3753 | 33 |
[[self parentViewController] dismissModalViewControllerAnimated:YES]; |
34 |
} |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
35 |
|
3787 | 36 |
-(IBAction) segmentedControlChanged:(id) sender { |
37 |
playSound(@"clickSound"); |
|
38 |
[self.tableView setContentOffset:CGPointMake(0, 0) animated:NO]; |
|
39 |
[self.tableView reloadData]; |
|
40 |
} |
|
41 |
||
42 |
#pragma mark - |
|
43 |
#pragma mark Table view data source |
|
44 |
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { |
|
45 |
return 1; |
|
46 |
} |
|
47 |
||
48 |
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
49 |
return [[self.people objectAtIndex:self.segmentedControl.selectedSegmentIndex] count]; |
|
50 |
} |
|
51 |
||
52 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
53 |
static NSString *CellIdentifier = @"Cell"; |
|
54 |
||
55 |
UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
|
56 |
if (cell == nil) |
|
57 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; |
|
58 |
||
59 |
// first all the names, then the title (which is offset 5) |
|
60 |
cell.textLabel.text = [[self.people objectAtIndex:self.segmentedControl.selectedSegmentIndex] objectAtIndex:[indexPath row]]; |
|
61 |
cell.detailTextLabel.text = [[self.people objectAtIndex:(self.segmentedControl.selectedSegmentIndex + 5)] objectAtIndex:[indexPath row]]; |
|
62 |
||
63 |
return cell; |
|
64 |
} |
|
65 |
||
66 |
#pragma mark - |
|
67 |
#pragma mark Table view delegate |
|
68 |
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
69 |
// do nothing |
|
70 |
} |
|
71 |
||
72 |
#pragma mark - |
|
73 |
#pragma mark Memory Management |
|
74 |
-(void) didReceiveMemoryWarning { |
|
75 |
[super didReceiveMemoryWarning]; |
|
76 |
} |
|
77 |
||
78 |
-(void) viewDidUnload { |
|
79 |
self.tableView = nil; |
|
80 |
self.segmentedControl = nil; |
|
81 |
self.people = nil; |
|
82 |
[super viewDidUnload]; |
|
83 |
} |
|
84 |
||
85 |
-(void) dealloc { |
|
86 |
[tableView release]; |
|
87 |
[segmentedControl release]; |
|
88 |
[people release]; |
|
89 |
[super dealloc]; |
|
90 |
} |
|
91 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
92 |
@end |