Skip to content

Commit

Permalink
Make list add cancel button bigger. Fixes #4
Browse files Browse the repository at this point in the history
  • Loading branch information
soffes committed Jul 28, 2012
1 parent a1e07ac commit 8502f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/CDIAddListTableViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
_textField.autocapitalizationType = UITextAutocapitalizationTypeWords;
[self.contentView addSubview:_textField];

_closeButton = [[UIButton alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 15.0f, 15.0f)];
_closeButton = [[UIButton alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 40.0f, 51.0f)];
[_closeButton setImage:[UIImage imageNamed:@"x.png"] forState:UIControlStateNormal];
self.accessoryView = _closeButton;
}
Expand Down

0 comments on commit 8502f7a

Please sign in to comment.