-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Milestone
Description
When the keyboard pops up, it covers my tab bar. To make it dismissable I have added the following:
PSTextFieldSpecifierCell.m In setupCell add: self.textField.delegate = self; self.textField.returnKeyType = UIReturnKeyDone;
Beneath that add the method: - (BOOL)textFieldShouldReturn:(UITextField *) theTextField { [theTextField resignFirstResponder]; return YES; }
Change the interface in the .h file to: @interface PSTextFieldSpecifierCell : InAppSettingsTableCell {
I don't know if this is entirely correct, but it works for me.
cheers P
Metadata
Metadata
Assignees
Labels
No labels