2012-07-13 38 views
2

我一直在寻找市场上不同的iPad应用程序。 Yelp的例如有如下屏幕:iOS:在iPad上创建NavigationController灯箱

Yelp iPad App

基本上,这种光盒(登录)从底部和“悬停”在UISplitViewController上的背景弹出。

如何创建这个“灯箱”并对其进行动画制作。我确信这样做的方法不行,在我的扩展知识中找不到任何东西。

回答

4
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:yourViewController]; 
navController.modalPresentationStyle = UIModalPresentationFormSheet; 
[self.navigationController presentModalViewController:navController animated:YES]; 
navController.view.superview.bounds = CGRectMake(0, 0, 400, 500); 
+0

这正是我需要的:)谢谢! – Byte 2012-07-13 20:18:32