-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDDPAddCityTVC.h
42 lines (34 loc) · 1.37 KB
/
DDPAddCityTVC.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
41
42
//
// DDPAddCityTVC.h
// minijob
//
// Created by Dario De pascalis on 04/06/14.
// Copyright (c) 2014 Dario De Pascalis. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import "DDPMap.h"
#import "MBProgressHUD.h"
@class DDPCity;
@protocol UIViewController
- (void)checkFieldsCity:(NSDictionary *)citySelected;
@end
@interface DDPAddCityTVC : UIViewController <MBProgressHUDDelegate, UISearchBarDelegate, UISearchDisplayDelegate, UITableViewDelegate, UITableViewDataSource,CLLocationManagerDelegate, DDPMapDelegate >{
DDPCity *citySelected;
NSString *caller;
MBProgressHUD *HUD;
}
@property (strong, nonatomic) DDPApplicationContext *applicationContext;
@property (assign, nonatomic) UIViewController *callerViewController;
@property (strong, nonatomic) NSMutableDictionary *wizardDictionary;
@property (nonatomic, strong) DDPMap *mapController;
@property (strong, nonatomic) NSMutableArray *arraySearch;
@property (strong, nonatomic) NSString *textHeader;
@property (weak, nonatomic) IBOutlet UILabel *labelHeader;
@property (weak, nonatomic) IBOutlet UILabel *labelMyCity;
@property (weak, nonatomic) IBOutlet MKMapView *mapView;
@property (weak, nonatomic) IBOutlet UISearchBar *searchBar;
@property (weak, nonatomic) IBOutlet UIBarButtonItem *buttonToNext;
@property (weak, nonatomic) IBOutlet UIToolbar *toolBar;
- (IBAction)toNext:(id)sender;
@end