aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes/EditingTableViewCell.m
diff options
context:
space:
mode:
authorEdmund von der Burg <evdb@mysociety.org>2013-09-10 16:33:38 +0100
committerMatthew Somerville <matthew@mysociety.org>2014-03-12 16:49:30 +0000
commit4a5a62bf9a9a73b6bbd0323d5ac6a1807bcc733e (patch)
tree0e2ddae7331f9c563cfdb0840d2e42ad68ec909a /iphone/FixMyStreet/Classes/EditingTableViewCell.m
parent4514e67c1d001d40171508f450a0aacba3e57c84 (diff)
Remove the iphone directory
Diffstat (limited to 'iphone/FixMyStreet/Classes/EditingTableViewCell.m')
-rw-r--r--iphone/FixMyStreet/Classes/EditingTableViewCell.m41
1 files changed, 0 insertions, 41 deletions
diff --git a/iphone/FixMyStreet/Classes/EditingTableViewCell.m b/iphone/FixMyStreet/Classes/EditingTableViewCell.m
deleted file mode 100644
index 04f9b2fa0..000000000
--- a/iphone/FixMyStreet/Classes/EditingTableViewCell.m
+++ /dev/null
@@ -1,41 +0,0 @@
-//
-// EditingTableViewCell.m
-// FixMyStreet
-//
-// Created by Matthew on 20/10/2008.
-// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
-//
-
-#import "EditingTableViewCell.h"
-
-@implementation EditingTableViewCell
-
-@synthesize textField;
-
-- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
- if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) {
- textField = [[UITextField alloc] initWithFrame:CGRectZero];
- textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
- textField.font = [UIFont systemFontOfSize:20];
- textField.clearButtonMode = UITextFieldViewModeWhileEditing;
- textField.returnKeyType = UIReturnKeyDone;
- [self addSubview:textField];
- }
- return self;
-}
-
--(void)layoutSubviews {
- textField.frame = CGRectInset(self.contentView.bounds, 20, 0);
-}
-
-- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
-}
-
-- (void)dealloc {
- [textField release];
- [super dealloc];
-}
-
-@end