I've witnessed the following issue.
In my code I have created UIViewController
that is displayed in 'UIPopoverViewController'.
Also I get notifications when keyboard appear,disappear.
After resizing frame I do see difference in appearance on iOS 7 and iOS 6.
On iOS 6 the displayed frame become black. I do not change anywhere in code background color for the view.
Pls explain me why in one case minimized view looks correct (iOS 7) and looks strange on (iOS 6)
iOS 6.1 Simulator - wrong result
iOS 7.1 Simulator - correct result
OK. I figured out possible solution. Here is the code that resolved the issue:
'UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:сontroller]; [UIPopoverController alloc] initWithContentViewController:navController];'
But, honestly speaking, I don't get why....
Result after using Navigation controller as initial controller for pop up VC: