Well, I've figured out something that works...
I've created a subclass of UICell that has a UITextField as a property.
In the "cellForRowAtIndexPath" method in the view controller, I then set the delegate for the text field to the view controller.
In then have the view controller adopt the UITextFieldDelegate protocol and implement the method "(BOOL)textFieldShouldReturn" in the view controller. Within this method I update the model and resign firstResponder
When I enter data into the text field and hit "return", the model is updated and the keyboard goes away. <yeah!>
-M
|