blob: 7b0069d023f0a70fac641eff466e71ceaac76301 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// 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
|