Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // MapAnnotation.h
- // CPOP Test 4
- //
- // Created by Will Kerswell on 30/10/2012.
- // Copyright (c) 2012 Will Kerswell. All rights reserved.
- //
- #import <MapKit/MapKit.h>
- @interface MapAnnotation : NSObject<MKAnnotation>
- @property (nonatomic, copy) NSString* categoryID;
- @property (nonatomic, assign) CLLocationCoordinate2D coordinate;
- @property (nonatomic, copy) NSString* title;
- @property (nonatomic, copy) NSString* subtitle;
- @property (nonatomic, copy) NSString* poiID;
- @property (nonatomic, copy) NSURL* pinURL;
- @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement