为什么不能将 UIImagePickerController 推入导航堆栈?

发布于 2024-10-13 07:44:46 字数 436 浏览 2 评论 0原文

使用pushViewController推送UIImagePickerController时:

[self.navigationController pushViewController:pvc animated:YES];

会出现错误,例如:

不支持推送导航控制器

正确的解决方案是使用presentModalViewController:

[self presentModalViewController:pvc animated:YES];

有人可以解释为什么这是必要的吗? UIViewController 中隐藏了什么?

谢谢!

When using pushViewController to push UIImagePickerController:

[self.navigationController pushViewController:pvc animated:YES];

an error will occur such as:

Pushing a navigation controller is not supported

The right solution is to use presentModalViewController:

[self presentModalViewController:pvc animated:YES];

Can someone explain why this is necessary? What‘s hidden in UIViewController?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何以畏孤独 2024-10-20 07:44:46

苹果不允许导航栏堆叠。由于图像选择器有自己的导航栏,因此不能将其放置在导航堆栈中。结果会导致用户困惑,因为会有两个栏、两组导航项、两个标题等。

Apple does not allow stacking of navigation bars. Since the image picker has its own navigation bar, it cannot be placed in a navigation stack. The result would cause user confusion since there would be two bars, two sets of navigation items, two titles, etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文