Hello,
I've just downloaded SDK 4.0 and I wanted to tun my iPhone application developed against SDK 3.1.3. Unfortunately the app behaves in a strange way in the Simulator for iPhone 4.0.
The first thing is that I have a view with a table view with text fields in the cells. When I show the view the keyboard immediately shows up, but I cannot modify any of the text views. When I try to choose any of the text fields the focus does not change and it ends up without any possibility to modify the text fields.
There is a UITextFieldDelegate
added to each of the text views, but none of its methods is called when the view shows up (together with the keyboard). When I choose one of the text views the
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
is called and I return YES
.
This is how the view looks like:
Any ideas?