在ios8 popover中,内容隐藏在导航栏后面

在ios8 popover中,内容隐藏在导航栏后面,ios8,uipopovercontroller,xcode6,Ios8,Uipopovercontroller,Xcode6,在ios8中,popover内容隐藏在导航栏后面,但在ios7中,它可以正常工作 我不明白为什么会发生这种情况我当时也处于同样的情况,我能够用以下代码来解决它: UINavigationController* navController = [[UINavigationController alloc] initWithRootViewController:self.myNewCollectionViewController]; UIPopoverController *popover = [[

在ios8中,popover内容隐藏在导航栏后面,但在ios7中,它可以正常工作


我不明白为什么会发生这种情况

我当时也处于同样的情况,我能够用以下代码来解决它:

UINavigationController* navController = [[UINavigationController alloc] initWithRootViewController:self.myNewCollectionViewController];
UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:navController];
self.myNewCollectionViewController.edgesForExtendedLayout = UIRectEdgeLeft | UIRectEdgeBottom | UIRectEdgeRight;
(此代码从edgesForExtendedLayout遮罩中删除UIRectedEdgeTop。)