author | koda |
Sat, 04 Sep 2010 02:09:24 +0200 | |
changeset 3825 | fd6c20cd90e3 |
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.h |
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 <UIKit/UIKit.h> |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
10 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
11 |
|
3787 | 12 |
@interface AboutViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> { |
13 |
UITableView *tableView; |
|
14 |
UISegmentedControl *segmentedControl; |
|
15 |
NSArray *people; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
16 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
17 |
|
3787 | 18 |
@property (nonatomic,retain) IBOutlet UITableView *tableView; |
19 |
@property (nonatomic,retain) IBOutlet UISegmentedControl *segmentedControl; |
|
20 |
@property (nonatomic,retain) NSArray *people; |
|
21 |
||
3753 | 22 |
-(IBAction) buttonPressed:(id) sender; |
3787 | 23 |
-(IBAction) segmentedControlChanged:(id) sender; |
3753 | 24 |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
25 |
@end |