将图像添加到下栏

时间:2011-04-06 13:37:48

标签: iphone

如何在基于选项卡的应用程序中将图像添加到下栏 我可以得到

self.navigationitem

但如何访问下方工具栏并向其添加背景图像

最好的问候

1 个答案:

答案 0 :(得分:1)

您要查找的是UITabBarITem,您可以从UITabBar的items属性获取,或者更轻松地从the tabBarItem property of your UIViewController获取。

然后我猜您可以使用image property ...

设置图像

总结:

self.tabBarItem.image = [UIImage imageNamed:@"myBeautifulImage.png"];

可能您正在寻找的内容(self是,ofc,您的UIViewController)......

编辑,但如果您的“基于标签的应用程序中的下栏”是UIToolbar(/ me:grins:..),那么您要找的是标准{{ 3}}如果您使用Interface Builder连接它,可以从UIToolbar.items属性或某些IBOutlet属性获取。

无论如何,我猜看Apple样本代码可能是一个好主意。