forked from UNAMMobile/Descarga-Cultura-UNAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCM.h
32 lines (26 loc) · 905 Bytes
/
CM.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
//
// CM.h
// Esqueleto DCU
//
// Created by julio.guzman on 18/11/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SuperViewController.h"
@class SuperViewController;
@interface CM : SuperViewController <UITableViewDelegate, UITableViewDataSource, UISearchBarDelegate>{
IBOutlet UITableView *_tableView;
IBOutlet UIActivityIndicatorView *_activityIndicator;
IBOutlet UISearchBar *_searchBar;
NSMutableArray *datos;
NSMutableArray *itemArray;
NSMutableDictionary *dictionary;
NSMutableDictionary *parseddictionary;
/////
//NSMutableDictionary *auxdictionary;
}
@property(nonatomic, retain) IBOutlet UITableView *_tableView;
@property(nonatomic, retain) IBOutlet UIActivityIndicatorView *_activityIndicator;
@property(nonatomic, retain) IBOutlet UISearchBar *_searchBar;
-(void)copyDictionary;
@end