如何在 iPhone 中的 uinavigationcontroller 上添加覆盖导航栏的视图?
我有一个基于导航的应用程序。我想添加覆盖整个屏幕的图像。如果我将它添加到推送视图控制器的顶部,它将不会覆盖导航栏。怎么解决呢?
I have a navigation based application. I want to add an image covering the entire screen. If i add it on top of a pushed view controller it won't cover the navigation bar. How to solve it?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够只使用
[selfpresentModalViewController:animated:];
因此,将您的 UIImage 包装到UIViewController
中并呈现它。它将全屏显示。You should be able to just use
[self presentModalViewController: animated:];
So wrapp your UIImage into aUIViewController
and present it. It will display it in full screen.