blob: 7b0069d023f0a70fac641eff466e71ceaac76301 (
plain) (
tree)
|
|
//
// HighscoreListController.h
// Cart Collect
//
// Created by iD Student Account on 7/20/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.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
|