diff options
author | matthew <matthew> | 2008-10-23 12:35:25 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-10-23 12:35:25 +0000 |
commit | 12b0e641c85227b16d31a0e484b5b708b4b06f84 (patch) | |
tree | 0fb4de7e1fc818a832dd7ed3578d0e517cc630b8 /iphone/FixMyStreet/Classes/InputTableViewController.m | |
parent | d5de94ea0e883890cc633fa546dc797810a46531 (diff) |
Remember strings between runs of application.
Diffstat (limited to 'iphone/FixMyStreet/Classes/InputTableViewController.m')
-rw-r--r-- | iphone/FixMyStreet/Classes/InputTableViewController.m | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/iphone/FixMyStreet/Classes/InputTableViewController.m b/iphone/FixMyStreet/Classes/InputTableViewController.m index 4de1b38bd..850257632 100644 --- a/iphone/FixMyStreet/Classes/InputTableViewController.m +++ b/iphone/FixMyStreet/Classes/InputTableViewController.m @@ -20,9 +20,6 @@ - (id)initWithNibName:(NSString *)nibName bundle:(NSBundle *)nibBundle { if (self = [super initWithNibName:nibName bundle:nibBundle]) { self.title = @"FixMyStreet"; - // These seem to work better in viewDidLoad - // actionsToDoView.sectionHeaderHeight = 0.0; - // self.navigationItem.backBarButtonItem.title = @"Foo"; } return self; } @@ -62,19 +59,10 @@ return 3; } -- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { - // Possible section==1 heading to make summary clearer once entered? - return nil; -} - - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 1; } -//- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { -// return 44.0f; -//} - -(void)enableSubmissionButton { [actionsToDoView reloadData]; FixMyStreetAppDelegate *delegate = [[UIApplication sharedApplication] delegate]; |