如何更改 UINavigationBar 背景图像 - iphone sdk?
首先,我阅读了所有“更改 uinavigationbar 颜色和背景图像”,但我无法克服我的问题。
我有一个带有 4 个选项卡的选项卡栏应用程序。每个选项卡都有导航控制器。 (我在IB中的mainwindow.xib文件中排列了所有对象)
在第一个选项卡中,我想在第一个视图中的导航栏背景图像上显示1.jpg。当用户点击表格视图行时,如何在导航栏上显示“2.jpg”以进行第二个视图?
我还想为每个选项卡显示不同的图像。
我该如何解决它?
谢谢大家。
first of all, i read all "changing uinavigationbar color & backgound image", but i couldnt get over my problem.
i have a tabbar app with 4 tabs. each tab has navigationcontroller. (i arranged all the objects in mainwindow.xib file in IB)
in thew first tab, i wanna display 1.jpg on navigationbars background image in first view. when the use taps the tableviews row, how can i display "2.jpg" on navigationbar for second view?
i also wanna display different images for each tabs.
how can i solve it?
thanx for all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行 self.navigationController.navigationBar.layer.contents = (id)image.CGImage 来更改导航栏的背景。
you can do self.navigationController.navigationBar.layer.contents = (id)image.CGImage to change the navigation bar's background.