OStack程序员社区-中国程序员成长平台

标题: iOS:在 iPad 上创建 NavigationController 灯箱 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 22:10
标题: iOS:在 iPad 上创建 NavigationController 灯箱

我一直在寻找市场上不同的 iPad 应用程序。例如,Yelp 有以下屏幕:

Yelp iPad App

基本上,这个灯箱(登录)从底部弹出并“悬停”在背景上的 UISplitViewController 上。

如何创建这个“灯箱”并为其设置动画。我确信有一种非 hacky 的方法可以做到这一点,只是在我的扩展知识中找不到任何东西。



Best Answer-推荐答案


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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4