-
Notifications
You must be signed in to change notification settings - Fork 0
/
CCPostView.h
50 lines (39 loc) · 1.17 KB
/
CCPostView.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
43
44
45
46
47
48
49
50
//
// CCPostView.h
// CleanCity
//
// Created by codecamp on 12/18/10.
// Copyright 2010 CodeCamp Klagenfurt. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
#import "CCDebugMacros.h"
#import "CCIncident.h"
#import "Facebook.h"
#import "CCDefinedConstants.h"
#import "CCAlertView.h"
#import "CCFacebookLoginView.h"
#import "CCNearIncidentsMapView.h"
@interface CCPostView : UIViewController <UIActionSheetDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate, CLLocationManagerDelegate, CCProgressCallbackProtocol> {
IBOutlet UITextView *comment;
IBOutlet UINavigationBar *navbar;
UIActionSheet *imageSourceChooser;
UIImagePickerController *imagePicker;
UIImage *pickedImage;
UIImageView *pickedImagePreview;
CCAlertView *alert;
CCNearIncidentsMapView *map;
NSString *commenttext;
CLLocationManager *locationManager;
CLLocation *location;
}
@property (readwrite, retain) NSString *commenttext;
- (IBAction) cancel;
- (IBAction) post;
- (IBAction) showImageSourceChooser;
- (IBAction) showMapView;
- (void) zoomPreview;
- (void) greyOutBackground:(BOOL)yesOrNo;
- (void) closeMapView;
- (void) closeMapView;
@end