diff options
| author | Starla Insigna <starla4444@gmail.com> | 2011-07-30 11:19:14 -0400 |
|---|---|---|
| committer | Starla Insigna <starla4444@gmail.com> | 2011-07-30 11:19:14 -0400 |
| commit | 9cd57b731ab1c666d4a1cb725538fdc137763d12 (patch) | |
| tree | 5bac45ae5157a1cb10c6e45500cbf72789917980 /Classes/HighscoreListController.h | |
| download | cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.tar.gz cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.tar.bz2 cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.zip | |
Initial commit (version 0.2.1)
Diffstat (limited to 'Classes/HighscoreListController.h')
| -rwxr-xr-x | Classes/HighscoreListController.h | 32 |
1 files changed, 32 insertions, 0 deletions
| diff --git a/Classes/HighscoreListController.h b/Classes/HighscoreListController.h new file mode 100755 index 0000000..f673609 --- /dev/null +++ b/Classes/HighscoreListController.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | // | ||
| 2 | // HighscoreListController.h | ||
| 3 | // Cart Collect | ||
| 4 | // | ||
| 5 | // Created by iD Student Account on 7/20/11. | ||
| 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. | ||
| 7 | // | ||
| 8 | |||
| 9 | #import <UIKit/UIKit.h> | ||
| 10 | #import "Highscore.h" | ||
| 11 | #import "cocoslive.h" | ||
| 12 | #import "RootViewController.h" | ||
| 13 | |||
| 14 | @interface HighscoreListController : UITableViewController { | ||
| 15 | UINavigationBar* navigationBar; | ||
| 16 | UINavigationItem* myNavigationItem; | ||
| 17 | NSArray* localHighscores; | ||
| 18 | NSArray* globalHighscores; | ||
| 19 | BOOL showGlobal; | ||
| 20 | BOOL loadingGlobal; | ||
| 21 | UIView* loadingView; | ||
| 22 | UIActivityIndicatorView* activity; | ||
| 23 | UILabel* statusText; | ||
| 24 | UITableView* tableView; | ||
| 25 | } | ||
| 26 | |||
| 27 | - (void)back; | ||
| 28 | - (void)switchLists:(id)sender; | ||
| 29 | - (void)scoreRequestOk:(id)sender; | ||
| 30 | - (void)scoreRequestFail:(id)sender; | ||
| 31 | |||
| 32 | @end | ||
