I have UIPopoverController
UINavigationController *navVC = [[[UINavigationController alloc] initWithRootViewController:loginVC] autorelease];
navVC.modalInPopover = YES;
navVC.modalPresentationStyle = UIModalPresentationCurrentContext;
_popoverLoginVC = [[UIPopoverController alloc] initWithContentViewController:navVC];
And when I present popover
[self.popoverLoginVC presentPopoverFromRect:centerFrame
inView:self.splitVC.view
permittedArrowDirections:0
animated:YES];
It looks like it is modal (I can't close popover by tapping outside) but other area hadn't dimmed. I have played with modalPresentationStyle with no luck (
Please, advise