当它要求您设置博客时,如何在iPad中的另一个视图上加载视图,就像在wordpress应用程序中一样。你能展示或发布一些示例代码吗?我有一个NSUSerdefaults设置,所以它会在第一次启动时显示。我希望此视图看起来像http://uplr.me/files/p45064.png
看看它是如何有阴影的,后面的视图变暗了。多数民众赞成我想做的事。
答案 0 :(得分:3)
我明白了
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];
非常简单
谢谢大家
答案 1 :(得分:2)
第二个视图作为第一个视图的模态视图加载。请参阅-[UIViewController presentModalViewController:animated:]
。
在iPad上,当您呈现模态视图时,会自动变暗。