diff options
author | matthew <matthew> | 2008-10-21 23:53:29 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-10-21 23:53:29 +0000 |
commit | c9f7ec5e74f4edc029108951bfdb396932260644 (patch) | |
tree | a32da516816c134d69d86eb7923c037d4d36d8b6 /iphone/FixMyStreet/Classes/InputTableViewController.h | |
parent | ef183ec3273b4eee487d3499d937753deabab280 (diff) |
Add settings page for name/email, upload code.
Diffstat (limited to 'iphone/FixMyStreet/Classes/InputTableViewController.h')
-rw-r--r-- | iphone/FixMyStreet/Classes/InputTableViewController.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/iphone/FixMyStreet/Classes/InputTableViewController.h b/iphone/FixMyStreet/Classes/InputTableViewController.h index 5ba0d1527..0947717de 100644 --- a/iphone/FixMyStreet/Classes/InputTableViewController.h +++ b/iphone/FixMyStreet/Classes/InputTableViewController.h @@ -7,7 +7,6 @@ // #import <UIKit/UIKit.h> -#import "imageCell.h" #import "MyCLController.h" @interface InputTableViewController : UIViewController <UINavigationControllerDelegate,UIImagePickerControllerDelegate,MyCLControllerDelegate> { @@ -20,11 +19,12 @@ UITableViewCell* actionFetchLocationCell; UITableViewCell* actionSummaryCell; - UILabel* titleLabel; - UILabel* titleLabelLabel; + UILabel* subjectLabel; + UILabel* subjectContent; } -(void)enableSubmissionButton; +-(void)uploadReport; -(IBAction)addPhoto:(id) sender; -(IBAction)gotoSettings:(id)sender; @@ -34,7 +34,7 @@ - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker; //MyCLControllerDelegate --(void)newLocationUpdate:(NSString *)text; +-(void)newLocationUpdate:(CLLocation *)location; -(void)newError:(NSString *)text; @end |