I have a few UITextViews in my App. Since I have started building from XCode 4.5 the UITextView is sort of not editable in iOS6 but built on an iOS5 device they are fully editable.
The code hasnt changed sinced I started using iOS6. The XIB has been around since iOS4
Symptoms are…
iOS6
- Can raise keyboard with tap and delete characters , but cant type anything else
- Cant lower keyboard with keyboard hide key.
iOS5
- Can raise keyboard with tap and edit fully.
- Cant lower keyboard with keyboard hide key.
Im mystified. The textViewDidBeginEditing: gets hit so I know its wired up correctly.
The test project approach didnt work as I couldnt reproduce the issue.
In the end the fix was this which wasnt present.
[window makeKeyAndVisible];as in…