1

我有这个:

SomeViewController* vc = [[SomeViewController alloc] init];
self.view.backgroundColor = [UIColor clearColor];
self.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentModalViewController:vc animated:YES];

出现空白黑屏 - 如何解决?有任何想法吗?

4

2 回答 2

0

在这里聚会有点晚了,但是如果您要从带有 a 的 vc 初始化此模态视图控制器UINavigationController,请尝试在 UINavigationController 上设置 modalPresentationStyle:

self.navigationController.modalPresentationStyle = UIModalPresentationCurrentContext;
于 2012-12-06T15:30:24.797 回答
0

这似乎不是视图控制器的有效初始化程序。使用 – initWithNibName:bundle: 如果你的子类是 UIViewController 的直接子类

于 2012-08-16T20:00:38.097 回答