ConfigurableTableView icon indicating copy to clipboard operation
ConfigurableTableView copied to clipboard

Cannot change keyboard type for an inline string editor

Open cdarken opened this issue 13 years ago • 0 comments

I've tried this:

CBCellStringInlineEditor *usernameEditor = [CBCellStringInlineEditor cellWithTitle:NSLocalizedString(@"Display name", nil) 
valuePath:@"username"];
usernameEditor.keyboardType = UIKeyboardTypeAlphabet;

and this:

CBCellStringInlineEditor *emailEditor = [CBCellStringInlineEditor cellWithTitle:NSLocalizedString(@"Email", nil) 
valuePath:@"email" 
editor:[CBEditorStringInline editorWithKeyboardType:UIKeyboardTypeEmailAddress]];

but I always get the default keyboard.

cdarken avatar Jan 30 '12 10:01 cdarken