4

我想在 iPad 屏幕上表示的 modalviewcontroller 有问题。如果我保持原样,那么一切都很好。但是我对这些视图的信息很少,所以我需要调整它们的大小。

所以,当我调整它们的大小时,我不能强迫它们出现在屏幕中间。即使我设法将其中一个方向集中在一个方向上,它也会在另一个方向上搞砸了。

这是我当前的代码:

UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:acvc];
[nav setModalPresentationStyle:UIModalPresentationFormSheet];
[nav setModalTransitionStyle: UIModalTransitionStyleCoverVertical];
[[acvc view] setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"main_bg.jpg"]]];
[self presentViewController:nav animated:YES completion:nil];
nav.view.superview.frame = CGRectMake(self.view.bounds.size.width/2 + 175, self.view.bounds.size.height/2 - 125, 350, 250);
// nav.view.superview.center = self.view.window.center;

将不胜感激任何帮助,谢谢。

4

4 回答 4

7

这是一种适用于iOS7以及 iOS6 和 iOS5 并且仍然允许您使用UIModalTransitionStyleCoverVertical的方法:

-(void)presentController:(UIViewController*)controller fromRootController:(UIViewController*)rootController withSize:(CGSize)size
{
    UINavigationController* nav = [[UINavigationController alloc] initWithRootViewController:controller];
    nav.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
    nav.modalPresentationStyle = UIModalPresentationFormSheet;
    [rootController presentModalViewController:nav animated:YES];
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)
    {
        nav.view.superview.backgroundColor = [UIColor clearColor];
        nav.view.bounds = CGRectMake(0, 0, size.width, size.height);
    }
    else
    {
        nav.view.superview.bounds = CGRectMake(0, 0, size.width, size.height);
    }
}
于 2013-12-10T17:50:57.137 回答
4

将最后一行更改为以下内容:

nav.view.superview.bounds = CGRectMake(0, 0, 350, 250);
于 2013-08-04T06:48:58.483 回答
4

不幸的是,停止在 iOS7 中工作。只有将 ModalTransitionStyle 更改为 Dissolve 才能解决问题。也许这是iOS 7中的一个错误......

于 2013-09-22T03:51:51.783 回答
0

在 ios 7 中,您可以使用:

- (void)viewWillLayoutSubviews
{
    [super viewWillLayoutSubviews];
    self.view.superview.bounds = CGRectMake(0, 0, width, height);
}

有用。

于 2014-04-16T15:26:03.043 回答