ConfigurableTableView
ConfigurableTableView copied to clipboard
A UITableView that's configured with a model. Fast and easy way for input forms or settings.
Hi, I really like your library that makes creating complex UITableViews much easier! I tested the provided sample app, but I found a small annoying bug with CBEditorStingInline. To see...
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...
May I ask for a clarifiction on how to compile the sample app in XCode 4? I have managed to build the Workspace with no issues, but Xcode won't allow...
It would be nice if all the editors worked without a UINavigationController in place, so one-shot modal controllers could be used. Any thoughts on how this could/should be implemented in...