我有 UIPopoverController
UINavigationController *navVC = [[[UINavigationController alloc] initWithRootViewController:loginVC] autorelease];
navVC.modalInPopover = YES;
navVC.modalPresentationStyle = UIModalPresentationCurrentContext;
_popoverLoginVC = [[UIPopoverController alloc] initWithContentViewController:navVC];
当我呈现弹出框时
[self.popoverLoginVC presentPopoverFromRect:centerFrame
inView:self.splitVC.view
permittedArrowDirections:0
animated:YES];
看起来它是模态的(我无法通过点击外部来关闭弹出框)但其他区域没有变暗。 我玩过 modalPresentationStyle 没有运气(
请指教