blob: 87c49e7f63578c9ebc93d807d1afb38fe1d3b3e4 (
plain)
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
|
//
// FixMyStreetAppDelegate.h
// FixMyStreet
//
// Created by Matthew on 25/09/2008.
// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
//
#import <UIKit/UIKit.h>
@class InputTableViewController;
@interface FixMyStreetAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
UINavigationController *navigationController;
// The report currently being entered.
UIImage* image;
NSString* location;
NSString* subject;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) UINavigationController *navigationController;
@property (nonatomic, retain) UIImage* image;
@property (nonatomic, retain) NSString* location;
@property (nonatomic, retain) NSString* subject;
-(void)uploadReport;
@end
|