aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes/EditSubjectViewController.h
diff options
context:
space:
mode:
authormatthew <matthew>2008-10-21 23:53:29 +0000
committermatthew <matthew>2008-10-21 23:53:29 +0000
commitc9f7ec5e74f4edc029108951bfdb396932260644 (patch)
treea32da516816c134d69d86eb7923c037d4d36d8b6 /iphone/FixMyStreet/Classes/EditSubjectViewController.h
parentef183ec3273b4eee487d3499d937753deabab280 (diff)
Add settings page for name/email, upload code.
Diffstat (limited to 'iphone/FixMyStreet/Classes/EditSubjectViewController.h')
-rw-r--r--iphone/FixMyStreet/Classes/EditSubjectViewController.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/iphone/FixMyStreet/Classes/EditSubjectViewController.h b/iphone/FixMyStreet/Classes/EditSubjectViewController.h
index e66509993..e998d0fee 100644
--- a/iphone/FixMyStreet/Classes/EditSubjectViewController.h
+++ b/iphone/FixMyStreet/Classes/EditSubjectViewController.h
@@ -8,12 +8,15 @@
#import <UIKit/UIKit.h>
-@class SubjectTableViewCell;
+@class EditingTableViewCell;
@interface EditSubjectViewController : UITableViewController <UITextFieldDelegate> {
- SubjectTableViewCell *subjectCell;
+ EditingTableViewCell *cell;
}
--(void)updateSummary:(NSString*)summary;
+@property (nonatomic, retain) EditingTableViewCell *cell;
+
+-(void)setAll:(NSString*)a viewTitle:(NSString*)b placeholder:(NSString*)c keyboardType:(UIKeyboardType)d capitalisation:(UITextAutocapitalizationType)e;
+-(void)updateText:(NSString*)text;
@end