你如何在iPad的另一大视图的顶部加载视图(How do you load a view on to

2019-11-03 07:58发布

你如何加载在iPad的另一个视图的顶视图像WordPress的应用程序时,它会要求你设置你的博客。 您可以显示或张贴我一些示例代码。 我有一个设置NSUserDefaults的所以它会显示此对首次发射。 我想这个观点看起来像这样http://uplr.me/files/p45064.png

看看它是如何有shaddows和视图在后面的黑暗。 那是什么,我试图做的。

Answer 1:

我知道了

AddViewController* firstLaunchController = [[AddViewController alloc] initWithNibName:nil bundle:nil];
UINavigationController *modalNavigationController = [[UINavigationController alloc] initWithRootViewController:firstLaunchController];
modalNavigationController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
modalNavigationController.modalPresentationStyle = UIModalPresentationFormSheet;
[detailViewController presentModalViewController:modalNavigationController animated:YES];
[firstLaunchController release];

如此简单

感谢大家



Answer 2:

第二视图被加载为第一模态的视图。 见-[UIViewController presentModalViewController:animated:]

在iPad上,当你提出一个模式的看法,你自动获得变暗。



文章来源: How do you load a view on top of another view in the iPad