你如何加载在iPad的另一个视图的顶视图像WordPress的应用程序时,它会要求你设置你的博客。 您可以显示或张贴我一些示例代码。 我有一个设置NSUserDefaults的所以它会显示此对首次发射。 我想这个观点看起来像这样http://uplr.me/files/p45064.png
看看它是如何有shaddows和视图在后面的黑暗。 那是什么,我试图做的。
你如何加载在iPad的另一个视图的顶视图像WordPress的应用程序时,它会要求你设置你的博客。 您可以显示或张贴我一些示例代码。 我有一个设置NSUserDefaults的所以它会显示此对首次发射。 我想这个观点看起来像这样http://uplr.me/files/p45064.png
看看它是如何有shaddows和视图在后面的黑暗。 那是什么,我试图做的。
我知道了
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];
如此简单
感谢大家
第二视图被加载为第一模态的视图。 见-[UIViewController presentModalViewController:animated:]
。
在iPad上,当你提出一个模式的看法,你自动获得变暗。