[ios] Disable Done key on keyboard if textfield is empty

This commit is contained in:
Alex Zolotarev 2012-10-16 14:58:44 +03:00 committed by Alex Zolotarev
parent 529600f340
commit 0af5b9ccfe
2 changed files with 2 additions and 1 deletions

View file

@ -137,6 +137,7 @@
UITextField * f = [[[UITextField alloc] initWithFrame:r] autorelease];
f.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
f.returnKeyType = UIReturnKeyDone;
f.enablesReturnKeyAutomatically = YES;
f.clearButtonMode = UITextFieldViewModeWhileEditing;
f.autocorrectionType = UITextAutocorrectionTypeNo;
f.adjustsFontSizeToFitWidth = YES;
@ -151,7 +152,6 @@
cell.accessoryType = UITableViewCellAccessoryNone;
[cell.contentView addSubview:f];
[f becomeFirstResponder];
// f.textAlignment = UITextAlignmentCenter;
}
else
{

View file

@ -138,6 +138,7 @@
cell.contentView.frame.size.width - 3 * padding - leftR.size.width, leftR.size.height);
UITextField * f = [[[UITextField alloc] initWithFrame:r] autorelease];
f.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
f.enablesReturnKeyAutomatically = YES;
f.returnKeyType = UIReturnKeyDone;
f.clearButtonMode = UITextFieldViewModeWhileEditing;
f.autocorrectionType = UITextAutocorrectionTypeNo;