Created
October 17, 2014 17:42
-
-
Save vikdenic/d976a9ecdd300807e325 to your computer and use it in GitHub Desktop.
Custom Pizzeria.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Pizzeria.h | |
| // ZaHunter | |
| // | |
| // Created by Christopher on 10/15/14. | |
| // Copyright (c) 2014 Big Nerd Ranch. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> | |
| #import <MapKit/MapKit.h> | |
| @interface Pizzeria : NSObject | |
| @property MKMapItem *mapItem; | |
| @property CLLocationDistance distanceFromMe; | |
| @property NSString *distanceFromMeInKM; | |
| -(instancetype)initWithMapItem: (MKMapItem *) passedInMapItem distanceFromMe: (CLLocationDistance)passedInDistanceFromMe distanceFromMeInKM: (NSString *) passedInDistanceFromMeInKM; | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment