From 9cd57b731ab1c666d4a1cb725538fdc137763d12 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sat, 30 Jul 2011 11:19:14 -0400 Subject: Initial commit (version 0.2.1) --- Classes/HighscoreListController.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 Classes/HighscoreListController.h (limited to 'Classes/HighscoreListController.h') 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 @@ +// +// HighscoreListController.h +// Cart Collect +// +// Created by iD Student Account on 7/20/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import +#import "Highscore.h" +#import "cocoslive.h" +#import "RootViewController.h" + +@interface HighscoreListController : UITableViewController { + UINavigationBar* navigationBar; + UINavigationItem* myNavigationItem; + NSArray* localHighscores; + NSArray* globalHighscores; + BOOL showGlobal; + BOOL loadingGlobal; + UIView* loadingView; + UIActivityIndicatorView* activity; + UILabel* statusText; + UITableView* tableView; +} + +- (void)back; +- (void)switchLists:(id)sender; +- (void)scoreRequestOk:(id)sender; +- (void)scoreRequestFail:(id)sender; + +@end -- cgit 1.4.1