如何将背景图像添加到导航控制器根视图
我想将背景图像添加到根视图,以便它在所有视图中都可见......
i want to add bg image to root view so that it will be visible in all views ....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想将背景图像添加到根视图,以便它在所有视图中都可见......
i want to add bg image to root view so that it will be visible in all views ....
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
在导航控制器后面有一个 UIImageView 。然后使导航控制器的可见视图控制器的背景透明。
Have a
UIImageView
behind the navigation controller. Then make the background for the visible view controller of the navigation controller transparent.作为使用透明度的替代方法——创建一个 UIView 的自定义子类,用于获取根视图的背景图像的视图。如果将视图设置为透明,则它们在动画(滑入/滑出)期间的外观将与在每个视图中重复图像时的外观不同。
As an alternative to using transparency -- make a custom subclass of UIView that you use for your views that go get the background image of the root view. If you make the views transparent, they will look different during animation (slide in/out) than they would if you repeat the image in each view.
我已将图像添加到 rootview 控制器的 IB 窗口中,解决了我的问题
i have added image to window in IB of rootview controller that solved my problem