Manually changing keyboard orientation for a view that's on top of a camera view
- by XKR
I'm basically trying to reproduce the core functionality of the "At Once" app. I have a camera view and another view with a text view on it.
I add both views to the window. All is well so far.
[window addSubview:imagePicker.view];
[window addSubview:textViewController.view];
I understand that the UIImagePickerController does not support…