Where is the editingView?
Wrote at November 20, 2009 da Filippo Camillo
Speaking about iPhone application development...well, after almost two days spent looking for the reason why the editingView of my new application doesn't work...I get it!
Well, always remember...all the text fields need to be linked in two directions:
- From File's owner Referencing outlet to every single text field (and select the delegate)
- From every single Outlets to the corrisponding textField
Take a look to the screenshot
If you don't set the referencing outlet, you'll get a lot of problems. For example, the text field doesn't resign first responder status and method like "textFieldShouldEndEditing" won't be called!
Here you can find a bunch of other tips about debugging and Debugger Console:
Debugging tips for objective-C
Happy coding
no comment yet