我一直在寻找市场上不同的 iPad 应用程序。例如,Yelp 有以下屏幕:
基本上,这个灯箱(登录)从底部弹出并“悬停”在背景上的 UISplitViewController 上。
如何创建这个“灯箱”并为其设置动画。我确信有一种非 hacky 的方法可以做到这一点,只是在我的扩展知识中找不到任何东西。
Best Answer-推荐答案 strong>
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:yourViewController];
navController.modalPresentationStyle = UIModalPresentationFormSheet;
[self.navigationController presentModalViewController:navController animated:YES];
navController.view.superview.bounds = CGRectMake(0, 0, 400, 500);
关于iOS:在 iPad 上创建 NavigationController 灯箱,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11476414/
|