-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResultsViewController.h
More file actions
32 lines (26 loc) · 944 Bytes
/
ResultsViewController.h
File metadata and controls
32 lines (26 loc) · 944 Bytes
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
//
// ResultsViewController.h
// Meet N Eat
//
// Created by Daniel Moreh on 1/26/13.
// Copyright (c) 2013 Daniel Moreh. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>
@interface ResultsViewController : UIViewController {
NSString *latA, *latB, *lonA, *lonB;
CLLocationManager *locationManager;
}
@property (weak, nonatomic) IBOutlet UILabel *introLabel;
@property (weak, nonatomic) IBOutlet UILabel *destinationLabel;
@property (weak, nonatomic) IBOutlet UILabel *distanceLabel;
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
@property (weak, nonatomic) NSDictionary *results;
@property UIButton *yesButton;
@property UIButton *noButton;
@property BOOL isHost;
- (void)yesButtonPressed;
- (void)noButtonPressed;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil results:(NSDictionary *)results host:(BOOL)isHost;
@end