forked from organicmaps/organicmaps
[ios] Disable Done key on keyboard if textfield is empty
This commit is contained in:
parent
529600f340
commit
0af5b9ccfe
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue