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