aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes/EditSubjectViewController.h
diff options
context:
space:
mode:
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