forked from UNAMMobile/Descarga-Cultura-UNAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAM.h
40 lines (29 loc) · 924 Bytes
/
AM.h
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
34
35
36
37
38
39
40
//
// AM.h
// Esqueleto DCU
//
// Created by julio.guzman on 18/11/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SBJSON.h"
#import "SuperViewController.h"
@class SuperViewController;
@interface AM : SuperViewController <UITableViewDelegate, UITableViewDataSource, UISearchBarDelegate>{
IBOutlet UITableView *tableView;
IBOutlet UISearchBar *searchBar;
BOOL searching;
NSMutableArray *songs;
NSMutableDictionary *sections;
NSMutableArray *totalItems;
NSMutableArray *totalItemsOrdenados;
NSMutableArray *totalItemsOrdenadosX;
NSMutableArray *displayItems;
NSMutableArray *listOfItems;
IBOutlet UIActivityIndicatorView *activityIndicator;
}
- (IBAction) goBack;
- (NSString *) documentsPath;
@property (nonatomic, retain) NSMutableArray *songs;
@property (nonatomic, retain) NSMutableDictionary *sections;
@end