blob: 5921ec6b7a8c280ef2746595abc472c7ebe43bed (
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
30
31
32
33
|
//
// 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;
UIToolbar* toolbar;
UINavigationItem* myNavigationItem;
NSArray* localHighscores;
NSArray* globalHighscores;
BOOL showGlobal;
BOOL loadingGlobal;
UIView* loadingView;
UIActivityIndicatorView* activity;
UILabel* statusText;
UITableView* tableView;
UISegmentedControl* areaControl;
UISegmentedControl* modeControl;
}
- (void)back;
- (void)switchLists:(id)sender;
- (void)switchGameMode:(id)sender;
- (void)scoreRequestOk:(id)sender;
- (void)scoreRequestFail:(id)sender;
@end
|