forked from CodeForPhilly/CyclePhilly-iOS-app
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathNoteViewController.h
More file actions
35 lines (29 loc) · 820 Bytes
/
NoteViewController.h
File metadata and controls
35 lines (29 loc) · 820 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
33
34
35
//
// NoteViewController.h
// WeBikeSD
//
// Created by Tyler Rogers on 12/28/15.
//
//
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
#import <MapKit/MapKit.h>
#import "NoteManager.h"
#import "TripManager.h"
#import "TripPurposeDelegate.h"
@interface NoteViewController : UIViewController <MKMapViewDelegate>
{
id <TripPurposeDelegate> delegate;
IBOutlet MKMapView *noteView;
Note *note;
UIBarButtonItem *doneButton;
UIBarButtonItem *flipButton;
UIView *infoView;
}
@property (nonatomic, retain) id <TripPurposeDelegate> delegate;
@property (nonatomic, retain) Note *note;
@property (nonatomic ,retain) UIBarButtonItem *doneButton;
@property (nonatomic, retain) UIBarButtonItem *flipButton;
@property (nonatomic, retain) UIView *infoView;
-(id)initWithNote:(Note *)note;
@end